rwheel commited on
Commit
01c9470
·
1 Parent(s): 3c80574

Update app/main.py

Browse files
Files changed (1) hide show
  1. 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("/items/{name}")
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}!"}