mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2025-07-17 03:22:25 +03:00
12 lines
234 B
Python
12 lines
234 B
Python
"""Photo repositories Meta module."""
|
|
|
|
import abc
|
|
|
|
|
|
class PhotoRepositoryMeta(metaclass=abc.ABCMeta):
|
|
|
|
@abc.abstractmethod
|
|
def get_photos(self, user_id):
|
|
"""Must be implemented in order to instantiate."""
|
|
pass
|