# -*- 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) if __name__ == '__main__': application.run(debug=True)