Coverage for library\asgi.py: 0%

4 statements  

« prev     ^ index     » next       coverage.py v7.4.4, created at 2024-06-29 10:02 +0100

1""" 

2ASGI config for library project. 

3 

4It exposes the ASGI callable as a module-level variable named ``application``. 

5 

6For more information on this file, see 

7https://docs.djangoproject.com/en/4.2/howto/deployment/asgi/ 

8""" 

9import os 

10from django.core.asgi import get_asgi_application 

11 

12os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'library.settings') 

13application = get_asgi_application()