You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
312 B
17 lines
312 B
5 years ago
|
from .csv import csv
|
||
|
from .bolt import namespace
|
||
|
import sys
|
||
|
|
||
|
__version__ = '0.0.1'
|
||
|
|
||
|
__all__ = [
|
||
|
'csv',
|
||
|
'namespace',
|
||
|
]
|
||
|
|
||
|
mod = sys.modules[__name__]
|
||
|
for d in namespace.subtypes, namespace.tlvtypes, namespace.messagetypes:
|
||
|
for name in d:
|
||
|
setattr(mod, name, d[name])
|
||
|
__all__.append(name)
|