forked from tilde/ssh-reg
Add sceleton for listusers.py
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…
Reference in New Issue