1
0
mirror of https://github.com/DanilaFe/abacus synced 2026-01-31 19:15:20 +00:00

Move TOML code out of the configuration in core, and into fx.

This commit is contained in:
2017-09-11 18:06:01 -07:00
parent fd246f935c
commit 21b7bd5e2b
8 changed files with 53 additions and 167 deletions

View File

@@ -0,0 +1,7 @@
package org.nwapw.abacus.config
open class Configuration(var numberImplementation: String = "<default>", disabledPlugins: Array<String> = emptyArray()) {
val disabledPlugins = disabledPlugins.toMutableSet()
}