Spaces:
Sleeping
Sleeping
File size: 143 Bytes
47cb4f0 | 1 2 3 4 5 6 7 8 9 | from env import app
import uvicorn
def main():
uvicorn.run(app, host="0.0.0.0", port=8000)
if __name__ == "__main__":
main() |