fix(wsgi): added docstring

This commit is contained in:
2021-12-06 19:35:43 +01:00
parent c51403ed2d
commit 889e8b3b20

View File

@@ -1,6 +1,11 @@
import os, sys
"""
WSGI entrypont
"""
import os
import sys
from app import create_app
app_path = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, app_path)
from app import create_app
application = create_app()