documentation full transformation

This commit is contained in:
2022-04-02 23:25:53 -03:00
parent b5d6894865
commit 27212b1009
11 changed files with 517 additions and 40 deletions

View File

@@ -1,10 +1,15 @@
#!/usr/bin/env python3
'''
'''
from .core import node,nodes
from .configfile import configfile
from .connapp import connapp
from pkg_resources import get_distribution
__all__ = ["node", "nodes", "configfile", "connapp"]
__version__ = "2.0.9"
__all__ = ["node", "nodes", "configfile"]
__version__ = "2.0.10"
__author__ = "Federico Luzzi"
__pdoc__ = {
'core': False,
'connapp': False,
}