connpy/conn/__main__.py

14 lines
253 B
Python
Raw Normal View History

2022-03-22 19:54:05 -03:00
#!/usr/bin/env python3
import sys
2022-03-28 16:26:37 -03:00
# from connapp import connapp
# from configfile import configfile
# from core import node
from conn import *
2022-03-22 19:54:05 -03:00
def main():
2022-03-23 17:28:53 -03:00
conf = configfile()
connapp(conf, node)
2022-03-22 19:54:05 -03:00
if __name__ == '__main__':
sys.exit(main())