Areid987 commited on
Commit
1bc2f54
1 Parent(s): 3d03dfd

Create app.py

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