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