Spaces:
Runtime error
Runtime error
File size: 154 Bytes
cb92d2b |
1 2 3 4 5 6 |
if __name__ == "__main__":
import uvicorn
from config import args
uvicorn.run("app:app", host=args.host, port=args.port, reload=args.reload)
|