connpy/conn/__init__.py

16 lines
319 B
Python
Raw Normal View History

2022-03-19 20:41:35 -03:00
#!/usr/bin/env python3
2022-04-02 23:25:53 -03:00
'''
'''
2022-03-30 19:51:54 -03:00
from .core import node,nodes
2022-03-22 19:54:05 -03:00
from .configfile import configfile
from .connapp import connapp
2022-04-01 17:53:51 -03:00
from pkg_resources import get_distribution
2022-03-17 19:05:23 -03:00
2022-04-02 23:25:53 -03:00
__all__ = ["node", "nodes", "configfile"]
__version__ = "2.0.10"
2022-04-01 17:53:51 -03:00
__author__ = "Federico Luzzi"
2022-04-02 23:25:53 -03:00
__pdoc__ = {
'core': False,
'connapp': False,
}