finish setup

This commit is contained in:
2022-03-29 12:45:17 -03:00
parent b199ddc8ac
commit 9f3cb6f6d9
3 changed files with 15 additions and 6 deletions

View File

@ -1,9 +1,8 @@
#!/usr/bin/env python3
import sys
# from connapp import connapp
# from configfile import configfile
# from core import node
from conn import *
from connapp import connapp
from configfile import configfile
from core import node
def main():
conf = configfile()

10
conn/app.py Normal file
View File

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