codesmidgen/wsgi.py

12 lines
241 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 pathlib import Path
2016-01-08 21:41:24 +00:00
from stickynotes import make_app
application = make_app(Path(__file__).parent)
2016-01-08 21:41:24 +00:00
if __name__ == '__main__':
application.run(debug=True)