0
0
Fork 0
mirror of https://github.com/boltgolt/howdy.git synced 2024-10-17 10:06:53 +02:00
howdy/cli.py

15 lines
216 B
Python
Executable file

#!/usr/bin/env python3
import sys
if (len(sys.argv) == 1):
import cli.help
sys.exit()
cmd = sys.argv[1]
if cmd == "list":
import cli.list
elif cmd == "help":
import cli.help
elif cmd == "add":
import cli.add