codesmidgen/codesmidgen/app.py

12 lines
248 B
Python

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