From 2eeeebdacba7dbcf7daea303af7fbe1e2aabc2cc Mon Sep 17 00:00:00 2001 From: Darksider3 Date: Sat, 12 Oct 2019 11:54:29 +0200 Subject: [PATCH] Add sceleton for listusers.py --- private/ListUsers.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 private/ListUsers.py diff --git a/private/ListUsers.py b/private/ListUsers.py new file mode 100644 index 0000000..43bd036 --- /dev/null +++ b/private/ListUsers.py @@ -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