ba-thesis/backend/main.py

9 lines
134 B
Python
Raw Normal View History

2023-05-10 16:19:38 +01:00
from fastapi import FastAPI, HTTPException
app = FastAPI()
@app.get("/hello/")
async def hello() -> str:
return "Hello World!"