弹幕接口和历史接口

This commit is contained in:
shineahead
2022-04-16 16:36:15 +08:00
committed by ladeng07
parent 3c0c328fae
commit febe17d539
35 changed files with 575 additions and 14 deletions
+16
View File
@@ -0,0 +1,16 @@
"""
WSGI config for IT_Show project.
It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/3.2/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'IT_Show.settings')
application = get_wsgi_application()