Add sceleton for listusers.py

pull/4/head
Darksider3 5 years ago
parent 96837cebe3
commit 2eeeebdacb

@ -0,0 +1,12 @@
#!/usr/bin/env python3
from lib.sqlitedb import SQLitedb
import lib.CFG as CFG
if __name__ == "__main__":
try:
SQLitedb(CFG.REG_FILE)
print("hi")
exit(0)
except KeyboardInterrupt:
pass
Loading…
Cancel
Save