Spaces:
Runtime error
Runtime error
Update app/main.py
Browse files- app/main.py +1 -1
app/main.py
CHANGED
@@ -2,6 +2,6 @@ from fastapi import FastAPI
|
|
2 |
|
3 |
app = FastAPI()
|
4 |
|
5 |
-
@app.get("/
|
6 |
async def say_hello(name):
|
7 |
return {"message": f"Hello {name}!"}
|
|
|
2 |
|
3 |
app = FastAPI()
|
4 |
|
5 |
+
@app.get("/say_hello/")
|
6 |
async def say_hello(name):
|
7 |
return {"message": f"Hello {name}!"}
|