first commit

This commit is contained in:
2022-03-17 19:05:23 -03:00
parent 5467e4f4bc
commit 6b58e71c6c
6 changed files with 283 additions and 0 deletions

7
conn/__init__.py Normal file
View File

@@ -0,0 +1,7 @@
from conn.core import node
from conn.configfile import configfile
import conn.tools
__version__ = "2.0"
__all__ = [node, configfile, tools]