jgwill commited on
Commit
155c5d6
·
1 Parent(s): 0ab0ac3
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("/hello")
6
+ def hello(name: str = ""):
7
+ return {"message": f"Hello {name}"}
8
+