Skip to content

Commit

Permalink
Добавляет корневой путь
Browse files Browse the repository at this point in the history
  • Loading branch information
codEnjoyer committed Oct 11, 2023
1 parent 6546e18 commit ed9d776
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions backend/src/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
from fastapi import FastAPI

app = FastAPI(title="Adaptify")


@app.get("/")
async def root() -> str:
return "Hello, world!"

0 comments on commit ed9d776

Please sign in to comment.