mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2025-02-12 09:30:46 +03:00
7 lines
167 B
Python
7 lines
167 B
Python
class PhotoRepository(object):
|
|
|
|
def __init__(self, object_factory, fs, db):
|
|
self.object_factory = object_factory
|
|
self.fs = fs
|
|
self.db = db
|