This commit is contained in:
Osman Faruk Bayram 2025-04-29 16:23:54 +03:00
parent c5d91ca9df
commit 666cb7b6dd

11
main.py Normal file
View file

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