mirror of
https://github.com/ChronosX88/PySca.git
synced 2024-11-05 02:01:02 +00:00
6 lines
132 B
Python
6 lines
132 B
Python
from abc import ABC, abstractmethod
|
|
|
|
class AbstractResultAction(ABC):
|
|
@abstractmethod
|
|
def handle(self, result):
|
|
pass |