Spaces:
Build error
Build error
afzalhosentipu
commited on
Commit
•
1149f45
1
Parent(s):
7d1a26e
Create requirements.txt
Browse files- requirements.txt +7 -1
requirements.txt
CHANGED
@@ -1 +1,7 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from fastapi import FastAPI
|
2 |
+
|
3 |
+
app = FastAPI()
|
4 |
+
|
5 |
+
@app.get("/")
|
6 |
+
def greet_json():
|
7 |
+
return {"Hello": "World!"}
|