Spaces:
Runtime error
Runtime error
| from fastapi import FastAPI | |
| import uvicorn | |
| app = FastAPI() | |
| def index(): | |
| return {"message": "Welcome to the index page!"} | |
| def hello(): | |
| return {"message": "Hello, testing!"} | |
| if __name__=='__main__': | |
| uvicorn.run('main:app', reload=True) |