codesmidgen/stickynotes/app.py
2023-07-26 17:43:28 -07:00

12 lines
248 B
Python

# -*- coding: utf-8 -*-
"""
This is the entry point for the WSGI server
"""
from pathlib import Path
from stickynotes import make_app
application = make_app(Path(__file__).parent.parent)
if __name__ == '__main__':
application.run(debug=True)