10 lines
329 B
Python
10 lines
329 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
__version__ = '1.0.0'
|
|
|
|
from m2m.nbiot import factory, ModuleBG96, ModuleBG95, ModuleBC66, ModuleHiSi
|
|
from m2m.serial import SerialPort
|
|
from m2m.interactive import ModemShell
|
|
|
|
__all__ = ['factory', 'SerialPort', 'ModuleBG96', 'ModuleBG95', 'ModuleBC66', 'ModuleHiSi', 'ModemShell']
|