11 lines
190 B
Python
11 lines
190 B
Python
from abc import ABC, abstractmethod
|
|
|
|
|
|
class ConfigurationModelBase(ABC):
|
|
|
|
@abstractmethod
|
|
def __init__(self): pass
|
|
|
|
@abstractmethod
|
|
def from_dict(self, settings: dict): pass
|