12 lines
185 B
Python
12 lines
185 B
Python
from abc import ABC, abstractmethod
|
|
|
|
|
|
class SchemaRepositoryError(Exception):
|
|
pass
|
|
|
|
|
|
class AbstractSchemaRepository(ABC):
|
|
@abstractmethod
|
|
def load(self, name):
|
|
pass
|