mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2025-07-16 19:12:28 +03:00
13 lines
221 B
Python
13 lines
221 B
Python
"""User repositories meta module."""
|
|
|
|
|
|
import abc
|
|
|
|
|
|
class UserRepositoryMeta(metaclass=abc.ABCMeta):
|
|
|
|
@abc.abstractmethod
|
|
def get(self, id):
|
|
"""Must be implemented in order to instantiate."""
|
|
pass
|