Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
from fastapi import FastAPI
|
2 |
-
|
3 |
app = FastAPI()
|
4 |
|
5 |
|
6 |
@app.get("/")
|
7 |
async def root():
|
8 |
-
return
|
|
|
1 |
from fastapi import FastAPI
|
2 |
+
|
3 |
app = FastAPI()
|
4 |
|
5 |
|
6 |
@app.get("/")
|
7 |
async def root():
|
8 |
+
return {"message": "Hello World"}
|