prompt_search_engine / api /service_manager.py
krstakis's picture
fixed imports and back to multistaging
63a3ec4
raw
history blame
132 Bytes
from .web_server import app
import uvicorn
def run():
"""
TODO
"""
uvicorn.run(app, host="0.0.0.0", port=8000)