Adhin commited on
Commit
21633f2
·
1 Parent(s): c220f45

test new endpoint

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -5,3 +5,7 @@ app = FastAPI()
5
  @app.get("/")
6
  def greet_json():
7
  return {"Hello": "World!"}
 
 
 
 
 
5
  @app.get("/")
6
  def greet_json():
7
  return {"Hello": "World!"}
8
+
9
+ @app.get("/test")
10
+ def greet_json():
11
+ return {"test": "test successful!"}