首次提交完整的python工程代码
This commit is contained in:
7
converter/base_converter.py
Normal file
7
converter/base_converter.py
Normal file
@@ -0,0 +1,7 @@
|
||||
from typing import Optional
|
||||
|
||||
|
||||
class BaseConverter:
|
||||
def convert(self, data: bytes) -> Optional[bytes]:
|
||||
"""所有转换器必须实现此方法"""
|
||||
raise NotImplementedError
|
||||
Reference in New Issue
Block a user