重构目录结构:调整项目布局
This commit is contained in:
10
hardware/__init__.py
Normal file
10
hardware/__init__.py
Normal file
@ -0,0 +1,10 @@
|
||||
# hardware/__init__.py
|
||||
"""
|
||||
硬件控制模块
|
||||
包含所有硬件设备的控制接口
|
||||
"""
|
||||
from .relay import RelayController
|
||||
from .inverter import InverterController
|
||||
from .transmitter import TransmitterController
|
||||
|
||||
__all__ = ['RelayController', 'InverterController', 'TransmitterController']
|
||||
Reference in New Issue
Block a user