7 lines
190 B
Python
7 lines
190 B
Python
|
|
from typing import Optional
|
||
|
|
|
||
|
|
|
||
|
|
class BaseConverter:
|
||
|
|
def convert(self, data: bytes) -> Optional[bytes]:
|
||
|
|
"""所有转换器必须实现此方法"""
|
||
|
|
raise NotImplementedError
|