mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-24 02:24:02 +03:00
13 lines
219 B
Python
13 lines
219 B
Python
"""Application config module."""
|
|
|
|
from django.apps import AppConfig
|
|
|
|
from githubnavigator import container
|
|
|
|
|
|
class WebConfig(AppConfig):
|
|
name = "web"
|
|
|
|
def ready(self):
|
|
container.wire(modules=[".views"])
|