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