ayush101NLPtask commited on
Commit
55800d6
·
verified ·
1 Parent(s): 83e24d8

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ from fastapi import FastAPI
2
+ app =FastAPI()
3
+ @app.get("/")
4
+ def greet_json():
5
+ return {"hello":"World"}