mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-24 10:34:01 +03:00
18 lines
442 B
Python
18 lines
442 B
Python
|
"""Analytics containers module."""
|
||
|
|
||
|
from dependency_injector import containers, providers
|
||
|
|
||
|
from . import services
|
||
|
|
||
|
|
||
|
class AnalyticsContainer(containers.DeclarativeContainer):
|
||
|
|
||
|
user_repository = providers.Dependency()
|
||
|
photo_repository = providers.Dependency()
|
||
|
|
||
|
aggregation_service = providers.Singleton(
|
||
|
services.AggregationService,
|
||
|
user_repository=user_repository,
|
||
|
photo_repository=photo_repository,
|
||
|
)
|