Spaces:
Build error
Build error
| import uvicorn | |
| from fastapi import FastAPI | |
| from fastapi.responses import RedirectResponse | |
| app = FastAPI() | |
| def redirect(): | |
| return RedirectResponse('./home') | |
| def redirect(): | |
| return RedirectResponse('./home') | |
| def home(): | |
| return 'Hello world!' | |
| if __name__ == '__main__': | |
| uvicorn.run(app, host="0.0.0.0", port=7860) | |