mirror of
https://github.com/status-im/nim-confutils.git
synced 2025-01-10 12:15:47 +00:00
17 lines
212 B
Nim
17 lines
212 B
Nim
import
|
|
../confutils
|
|
|
|
type
|
|
Command = enum
|
|
pubsub = "A pub sub command"
|
|
|
|
Conf = object
|
|
logDir: string
|
|
case cmd {.command.}: Command
|
|
of pubsub:
|
|
foo: string
|
|
|
|
let c = load Conf
|
|
echo c.cmd
|
|
|