Move files
This commit is contained in:
parent
7ab0b1ce62
commit
1ccea2bf9c
3 changed files with 1 additions and 1 deletions
7
srnemqtt/interfaces/__init__.py
Normal file
7
srnemqtt/interfaces/__init__.py
Normal file
|
@ -0,0 +1,7 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from abc import ABCMeta
|
||||
from io import RawIOBase
|
||||
|
||||
|
||||
class BaseInterface(RawIOBase, metaclass=ABCMeta):
|
||||
pass
|
7
srnemqtt/interfaces/feasycom.py
Normal file
7
srnemqtt/interfaces/feasycom.py
Normal file
|
@ -0,0 +1,7 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# from ..lib.feasycom_ble import BTLEUart
|
||||
from . import BaseSource
|
||||
|
||||
|
||||
class FeasycomSource(BaseSource):
|
||||
pass
|
8
srnemqtt/interfaces/serial.py
Normal file
8
srnemqtt/interfaces/serial.py
Normal file
|
@ -0,0 +1,8 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# import serial
|
||||
|
||||
from . import BaseSource
|
||||
|
||||
|
||||
class SerialSource(BaseSource):
|
||||
pass
|
Loading…
Add table
Add a link
Reference in a new issue