Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
victor
/
n8n
like
0
No application file
App
Files
Files
Community
10
Fetching metadata from the HF Docker repository...
Create app.py
#5
by
DavoudTavan
- opened
Feb 25, 2025
base:
refs/heads/main
←
from:
refs/pr/5
Discussion
Files changed
+7
-0
Files changed (1)
hide
show
app.py
+7
-0
app.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
from fastapi import FastAPI
2
+
3
+
app = FastAPI()
4
+
5
+
@app.get("/")
6
+
def greet_json():
7
+
return {"Hello": "World!"}