aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firm/User.kt
blob: 4dfac0df25d9061698f6b9f06996189360e64e69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package moe.nea.firm

import ext.StringIdentifiable

object User : ManagedConfig("test") {
	val option by choice("name") { TestEnum.A }

	enum class TestEnum : StringIdentifiable {
		A, B, C;
	}
}
fun main() {
	User.option
}