"""Entry point for the meshbay-hub systemd service.""" import uvicorn from meshbay_hub.app import app # noqa: F401 def main() -> None: uvicorn.run( "meshbay_hub.app:app", host="127.0.0.1", port=8000, log_level="info", ) if __name__ == "__main__": main()