This commit is contained in:
2022-03-23 17:28:53 -03:00
parent 56bd92d1f1
commit 506044b9fb
3 changed files with 168 additions and 21 deletions

View File

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