mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2025-02-12 09:30:46 +03:00
13 lines
235 B
Python
13 lines
235 B
Python
from django.apps import AppConfig
|
|
from django.conf import settings
|
|
|
|
from githubnavigator import container
|
|
from . import views
|
|
|
|
|
|
class WebConfig(AppConfig):
|
|
name = 'web'
|
|
|
|
def ready(self):
|
|
container.wire(modules=[views])
|