Veer15's picture
chore: deploy distributed systems debug environment
b641d3d verified
raw
history blame contribute delete
151 Bytes
from .api import app
def main() -> None:
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=8000)
if __name__ == "__main__":
main()