Added a separate wsgi app for the modules

This commit is contained in:
Antonio de la Rosa 2017-02-04 05:16:32 +01:00
parent d744e87c4d
commit 9332c4b673
5 changed files with 40 additions and 28 deletions

View file

@ -1,6 +1,9 @@
#!/usr/bin/env python3
from paramecio.index import app, run_app
from paramecio.wsgiapp import app
from paramecio.index import run_app
application=app
if __name__ == "__main__":
run_app(app)