mirror of
https://github.com/ChronosX88/PySca.git
synced 2024-11-05 10:11:01 +00:00
10 lines
241 B
Python
10 lines
241 B
Python
|
from abc import ABC, abstractmethod
|
||
|
|
||
|
class AbstractTargetGenerator(ABC):
|
||
|
@abstractmethod
|
||
|
def next(self) -> object:
|
||
|
raise NotImplemented
|
||
|
|
||
|
@abstractmethod
|
||
|
def configure(self, configuration):
|
||
|
raise NotImplemented
|