Created
May 25, 2020 22:31
-
-
Save juliuscanute/1a39af84b19069946d639746d7e53e4c to your computer and use it in GitHub Desktop.
AppConfig & Config DSL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
appConfig { | |
config("ALPHA") { | |
switch {/*...*/} | |
range {/*...*/} | |
editable {/*...*/} | |
choice {/*...*/} | |
} | |
config("BETA") { | |
switch {/*...*/} | |
range {/*...*/} | |
editable {/*...*/} | |
choice {/*...*/} | |
} | |
config("GAMMA") { | |
switch {/*...*/} | |
range {/*...*/} | |
editable {/*...*/} | |
choice {/*...*/} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment