Spaces:
Running
Running
File size: 183 Bytes
c47ec10 | 1 2 3 4 5 6 7 8 9 10 | from __future__ import annotations
import uvicorn
from api import create_app
app = create_app()
if __name__ == "__main__":
uvicorn.run(app, access_log=False, log_level="info")
|