Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
filipeclduarte
/
minimalFlaskAPI
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
filipeclduarte
commited on
May 5, 2022
Commit
7eacc64
·
1 Parent(s):
fc718c5
update app
Browse files
Files changed (1)
hide
show
app.py
+1
-1
app.py
CHANGED
Viewed
@@ -2,7 +2,7 @@ from fastapi import FastAPI
2
3
app = FastAPI()
4
5
-
app.get("/")
6
async def root():
7
return {"message": "Hello World"}
8
2
3
app = FastAPI()
4
5
+
@
app.get("/")
6
async def root():
7
return {"message": "Hello World"}
8