from __future__ import annotations from quart import Quart def create_app() -> Quart: app = Quart(__name__) @app.get("/") async def index() -> str: return """ Republisher

Hello, world!

Republisher web UI is starting here.

""" return app