Files
notifications-api/wsgi.py

7 lines
115 B
Python
Raw Normal View History

2015-12-15 16:37:54 +00:00
from app import create_app
2016-01-11 15:24:41 +00:00
application = create_app('live')
2015-12-15 16:37:54 +00:00
if __name__ == "__main__":
application.run()