mirror of
https://github.com/ChronosX88/PySca.git
synced 2024-11-05 10:11:01 +00:00
6 lines
139 B
Python
6 lines
139 B
Python
|
from abc import ABC, abstractmethod
|
||
|
|
||
|
class AbstractAnalyzer(ABC):
|
||
|
@abstractmethod
|
||
|
def analyze(self, result) -> object:
|
||
|
pass
|