mobixconsulting commited on
Commit
361b9c1
1 Parent(s): ba8d6b9

Create main.py

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