Vaibhav84 commited on
Commit
24a440f
·
verified ·
1 Parent(s): 5f0da23

Upload main.py

Browse files
Files changed (1) hide show
  1. main.py +5 -0
main.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ from fastapi import FastAPI
2
+ app = FastAPI()
3
+ @app.get("/")
4
+ async def root():
5
+ return {"greeting":"Hello world"}