YeetBot/src/main/kotlin/nl/voidcorp/yeetbot/Config.kt

12 lines
342 B
Kotlin
Raw Normal View History

2018-09-13 20:14:31 +02:00
package nl.voidcorp.yeetbot
data class Config(val guildWords: MutableMap<Long, GuildInfo> = mutableMapOf())
data class GuildInfo(val list: MutableList<Match> = mutableListOf())
data class Match(val match: String, var time: Long = System.currentTimeMillis(), val type: MatchType = MatchType.RAW)
enum class MatchType {
REGEX,
RAW
}