prompt_search_engine / api /service_manager.py
krstakis's picture
Add app
8a0c27f
raw
history blame
137 Bytes
from web_server import app
import uvicorn
def run():
"""
TODO
"""
uvicorn.run(app, host="0.0.0.0", port=8000)
run()