a lot of progress

This commit is contained in:
2022-03-22 19:54:05 -03:00
parent 221d7170ce
commit 56bd92d1f1
6 changed files with 386 additions and 54 deletions

10
conn/__main__.py Normal file
View File

@ -0,0 +1,10 @@
#!/usr/bin/env python3
import sys
import conn
def main():
conf = conn.configfile()
conn.connapp(conf, conn.node)
if __name__ == '__main__':
sys.exit(main())