aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/com/raeids/stratus/hook/ChatRegexes.kt
blob: fd743ea151249c149b47662383d144ec494183e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
package com.raeids.stratus.hook

data class ChatRegexes(val regexList: List<String>?) {
    val compiledRegexList: MutableList<Regex> = arrayListOf()

    init {
        regexList?.forEach {
            compiledRegexList.add(Regex(it))
        }
    }
}