JoeMiNot commited on
Commit
f97fe24
·
2 Parent(s): 56722128c19b02

Merge branch 'main' of https://huggingface.co/spaces/JoeMiNot/trRun

Browse files
Files changed (2) hide show
  1. __pycache__/app.cpython-39.pyc +0 -0
  2. app.py +0 -11
__pycache__/app.cpython-39.pyc ADDED
Binary file (436 Bytes). View file
 
app.py DELETED
@@ -1,11 +0,0 @@
1
- from fastapi import FastAPI
2
-
3
- app = FastAPI()
4
-
5
- @app.get("/")
6
- def root():
7
- return {"Hello": "World!"}
8
-
9
- @app.get("/greet")
10
- def greet_json():
11
- return {"Greet": "Again!"}