Ash808 commited on
Commit
6993052
·
1 Parent(s): cc731a8

Add application file

Browse files
Files changed (1) hide show
  1. app.py +3 -6
app.py CHANGED
@@ -2,9 +2,6 @@ from fastapi import FastAPI
2
 
3
  app = FastAPI()
4
 
5
- @app.get("/hello")
6
- def hello():
7
- """
8
- This Test Hello
9
- """
10
- return {"Hello":"You succefully deploy youtube"}
 
2
 
3
  app = FastAPI()
4
 
5
+ @app.get("/")
6
+ def greet_json():
7
+ return {"Hello": "World!"}