Bump gevent from 21.8.0 to 21.12.0
[mygpo.git] / mygpo / asgi.py
blobe125fe8308291e68df811851001a93235aaa3489
1 """
2 ASGI config for mygpo project.
4 It exposes the ASGI callable as a module-level variable named ``application``.
6 For more information on this file, see
7 https://docs.djangoproject.com/en/dev/howto/deployment/asgi/
8 """
10 import os
12 from django.core.asgi import get_asgi_application
14 os.environ.setdefault("DJANGO_SETTINGS_MODULE", "mygpo.settings")
16 application = get_asgi_application()