Spaces:
Runtime error
Runtime error
File size: 237 Bytes
6fce4ec |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
from __future__ import annotations
import uvicorn
from src.api import create_app
def main() -> None:
uvicorn.run(create_app(), host="0.0.0.0", port=8000)
if __name__ == "__main__": # pragma: no cover - manual start
main()
|