#!/usr/bin/env python3 from dezendorf.applications.python_web_framework.framework import create_app app = create_app("python-web-framework", title="Python Web Framework") if __name__ == "__main__": app.run(host="0.0.0.0", port=8080)