"""
WSGI application entry-point.
"""
# import main
from gn3.app import create_app
print("STARTING WSGI APP")
app = create_app()
if __name__ == "__main__":
print("Starting wsgi app...")
app.run()
![]() |
index : genenetwork3 | |
| GeneNetwork3 REST API for data science and machine learning |
| about summary refs log tree commit diff |
"""
WSGI application entry-point.
"""
# import main
from gn3.app import create_app
print("STARTING WSGI APP")
app = create_app()
if __name__ == "__main__":
print("Starting wsgi app...")
app.run()