Spaces:
Paused
Paused
test new endpoint
Browse files
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!"}
|