11 lines
266 B
Python
11 lines
266 B
Python
#!/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"
|
|
__author__ = "Federico Luzzi"
|