afzalhosentipu commited on
Commit
1149f45
1 Parent(s): 7d1a26e

Create requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +7 -1
requirements.txt CHANGED
@@ -1 +1,7 @@
1
- git clone git@hf.co:spaces/afzalhosentipu/tipu
 
 
 
 
 
 
 
1
+ from fastapi import FastAPI
2
+
3
+ app = FastAPI()
4
+
5
+ @app.get("/")
6
+ def greet_json():
7
+ return {"Hello": "World!"}