Spaces:
Sleeping
Sleeping
File size: 246 Bytes
bf6550d | 1 2 3 4 5 6 7 8 9 10 11 12 | from __future__ import annotations
import uvicorn
from app import app
from src.executive_assistant.config import AppRuntimeConfig
def main() -> None:
runtime = AppRuntimeConfig()
uvicorn.run(app, host=runtime.host, port=runtime.port)
|