bwbox/main.nim

15 lines
254 B
Nim
Raw Normal View History

2021-05-18 22:10:35 +02:00
import lib/sandbox
2021-06-19 16:33:47 +02:00
import lib/args
import options
2021-05-16 20:35:01 +02:00
2021-06-19 16:33:47 +02:00
proc main(): int =
let args = parseArgs()
2021-05-16 20:35:01 +02:00
2021-06-19 16:33:47 +02:00
if args.isNone:
2021-06-20 14:09:30 +02:00
echo "Usage: bwshell --command=cmd --profile=profile <sandbox_name>"
2021-06-19 16:33:47 +02:00
return 1
2021-05-18 22:10:35 +02:00
else:
2021-06-20 14:09:30 +02:00
sandboxExec(args.unsafeGet)
2021-05-16 20:35:01 +02:00
2021-06-19 16:33:47 +02:00
quit(main())