mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2025-05-22 13:36:15 +03:00
21 lines
483 B
Python
21 lines
483 B
Python
"""Photo containers module."""
|
|
|
|
from dependency_injector import containers, providers
|
|
|
|
from . import entities, repositories
|
|
|
|
|
|
class PhotoContainer(containers.DeclarativeContainer):
|
|
|
|
database = providers.Dependency()
|
|
file_storage = providers.Dependency()
|
|
|
|
photo = providers.Factory(entities.Photo)
|
|
|
|
photo_repository = providers.Singleton(
|
|
repositories.PhotoRepository,
|
|
entity_factory=photo.provider,
|
|
fs=file_storage,
|
|
db=database,
|
|
)
|