blob: 0776fa075491d88e39ea980eda6ac7aa314bc455 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package cc.woverflow.chattils.chat
data class ChatRegexes(val regexList: List<String>?) {
val compiledRegexList: MutableList<Regex> = arrayListOf()
init {
regexList?.forEach {
compiledRegexList.add(Regex(it))
}
}
}
|