aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/org/polyfrost/chatting/chat/ChatRegexes.kt
blob: 0d6909e01ed1ba1785487627c9e1638d27657749 (plain)
1
2
3
4
5
6
7
8
9
10
11
package org.polyfrost.chatting.chat

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

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