nicolasbuitragob commited on
Commit
1d235a8
·
1 Parent(s): 4dc06f7
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -4,4 +4,8 @@ app = FastAPI()
4
 
5
  @app.get("/")
6
  def read_root():
7
- return {"message": "Hello World"}
 
 
 
 
 
4
 
5
  @app.get("/")
6
  def read_root():
7
+ return {"message": "Hello World"}
8
+
9
+ @app.get("/test")
10
+ def test():
11
+ return {"message": "from test"}