10 lines
211 B
Python
Raw Normal View History

2025-03-28 18:23:30 +08:00
from abc import ABC, abstractmethod
class BaseReporter(ABC):
"""所有 reporter 的基类"""
@abstractmethod
def run(self):
"""运行 reporter子类必须实现此方法"""
pass