filipeclduarte commited on
Commit
7eacc64
·
1 Parent(s): fc718c5

update app

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -2,7 +2,7 @@ from fastapi import FastAPI
2
 
3
  app = FastAPI()
4
 
5
- app.get("/")
6
  async def root():
7
  return {"message": "Hello World"}
8
 
 
2
 
3
  app = FastAPI()
4
 
5
+ @app.get("/")
6
  async def root():
7
  return {"message": "Hello World"}
8