feat: add bad word filter

This commit is contained in:
2024-09-18 13:06:23 +08:00
parent 069fed22ca
commit 4d22b1ea55
8 files changed
+49 -4

No files matched your search

@@ -28,4 +28,5 @@ class ConfigManager : JsonFileHandler<Config>("config.json") {
val smtpPassword get() = this.read<Config>().smtpPassword
val smtpFromAddress get() = this.read<Config>().smtpFromAddress
val admins get() = this.read<Config>().admins
val enableAntiRevoke get() = this.read<Config>().enableAntiRevoke
}