codesmidgen/wsgiapp.py

11 lines
195 B
Python
Raw Normal View History

2016-01-08 21:41:24 +00:00
# -*- coding: utf-8 -*-
"""
This is the entry point for the WSGI server
"""
from stickynotes import make_app
application = make_app()
if __name__ == '__main__':
application.run(debug=True)