2025-03-28 18:23:30 +08:00

10 lines
211 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

from abc import ABC, abstractmethod
class BaseReporter(ABC):
"""所有 reporter 的基类"""
@abstractmethod
def run(self):
"""运行 reporter子类必须实现此方法"""
pass