15 lines
273 B
Python
Raw Normal View History

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