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