首次提交完整的python工程代码

This commit is contained in:
2026-06-15 20:38:42 +08:00
commit bca485d748
159 changed files with 248076 additions and 0 deletions

10
converter/c_to_b.py Normal file
View File

@@ -0,0 +1,10 @@
from converter.base_converter import BaseConverter
from utils.logger import logger
from utils.hex_helper import hex_dump
class C2BConverter(BaseConverter):
def convert(self, data: bytes):
# 无条件透传给 B
hex_dump(data, "C→B 透传指令")
logger.info("✅ 指令已透传给 B 软件")
return data