mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2025-07-18 20:12:31 +03:00
12 lines
279 B
Python
12 lines
279 B
Python
"""Photos bundle entity repositories module."""
|
|
|
|
|
|
class PhotoRepository:
|
|
"""Photo entity repository."""
|
|
|
|
def __init__(self, object_factory, fs, db):
|
|
"""Initialize instance."""
|
|
self.object_factory = object_factory
|
|
self.fs = fs
|
|
self.db = db
|