fix: Fixed WSGI app startup

This commit is contained in:
gd 2022-01-05 09:31:27 +03:00
parent 721fda8b22
commit fc80d9e661
1 changed files with 2 additions and 0 deletions

View File

@ -91,5 +91,7 @@ def send_image(image_name):
def send_style():
return static_file('style.css', root = './')
app = app() # Create WSGI application
if __name__ == '__main__':
run()