Spaces:
Sleeping
Sleeping
File size: 180 Bytes
d103a0f | 1 2 3 4 5 6 7 8 9 10 11 12 13 | from env.server import app as _app
import uvicorn
def main():
uvicorn.run(_app, host="0.0.0.0", port=7860)
if __name__ == "__main__":
main()
__all__ = ["app", "main"]
|