Skip to content

Commit

Permalink
Added FastAPI Hello World for testing CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dahbar committed Oct 9, 2023
1 parent 46f0c53 commit 0ec19bb
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from typing import Union
from fastapi import FastAPI

app = FastAPI()

@app.get("/")
async def read_root():
return {
"Hello": "World"
}

0 comments on commit 0ec19bb

Please sign in to comment.