do
Browse files- __pycache__/app.cpython-39.pyc +0 -0
- app.py +4 -4
__pycache__/app.cpython-39.pyc
CHANGED
|
Binary files a/__pycache__/app.cpython-39.pyc and b/__pycache__/app.cpython-39.pyc differ
|
|
|
app.py
CHANGED
|
@@ -4,8 +4,8 @@ app = FastAPI()
|
|
| 4 |
|
| 5 |
@app.get("/")
|
| 6 |
def root():
|
| 7 |
-
return {"
|
| 8 |
|
| 9 |
-
@app.get("/greet")
|
| 10 |
-
def greet_json():
|
| 11 |
-
|
|
|
|
| 4 |
|
| 5 |
@app.get("/")
|
| 6 |
def root():
|
| 7 |
+
return {"Great!": "World!"}
|
| 8 |
|
| 9 |
+
# @app.get("/greet")
|
| 10 |
+
# def greet_json():
|
| 11 |
+
# return {"Greet": "Again!"}
|