PySca/pysca/interfaces/AbstractConfigurator.py

6 lines
144 B
Python
Raw Normal View History

2020-11-08 09:25:48 +00:00
from abc import ABC, abstractmethod
class AbstractConfigurator(ABC):
@abstractmethod
def configure(self, input) -> object:
pass