Add sceleton for listusers.py
This commit is contained in:
parent
96837cebe3
commit
2eeeebdacb
1 changed files with 12 additions and 0 deletions
12
private/ListUsers.py
Normal file
12
private/ListUsers.py
Normal file
|
@ -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…
Reference in a new issue