Initial Commit
This commit is contained in:
commit
8f7eee60b4
3 changed files with 20 additions and 0 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
.venv
|
||||
__pycache__
|
||||
8
main.py
Normal file
8
main.py
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
from fastapi import FastAPI
|
||||
|
||||
app = FastAPI()
|
||||
|
||||
|
||||
@app.get("/")
|
||||
async def root():
|
||||
return {"message": "Hello World"}
|
||||
10
requirements.txt
Normal file
10
requirements.txt
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
annotated-types==0.6.0
|
||||
anyio==4.2.0
|
||||
exceptiongroup==1.2.0
|
||||
fastapi==0.108.0
|
||||
idna==3.6
|
||||
pydantic==2.5.3
|
||||
pydantic_core==2.14.6
|
||||
sniffio==1.3.0
|
||||
starlette==0.32.0.post1
|
||||
typing_extensions==4.9.0
|
||||
Loading…
Reference in a new issue