Add self-configuration feature

This commit is contained in:
Wieland Schöbl
2020-08-17 20:22:27 +02:00
parent e58f4dc0c5
commit 5969a2f221
10 changed files with 222 additions and 51 deletions

View File

@@ -6,8 +6,8 @@ import java.io.File
@Serializable
data class DiscordChannel(
val id: Long,
val mentionedRole: String? = null,
val autoPublish: Boolean = false
var mentionedRole: String? = null,
var autoPublish: Boolean = false
)
@Serializable