first commit

This commit is contained in:
Prits001
2023-09-30 23:40:15 +03:00
commit dda01f0135
4 changed files with 21 additions and 0 deletions

9
main.py Normal file
View File

@ -0,0 +1,9 @@
from fastapi import FastAPI
import database
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World"}