mirror of
https://github.com/ChronosX88/PySca.git
synced 2024-11-05 10:11:01 +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
|