16 lines
305 B
Python
16 lines
305 B
Python
|
|
# retoor <retoor@molodetz.nl>
|
||
|
|
|
||
|
|
from fastapi import FastAPI
|
||
|
|
|
||
|
|
from typosaurus_sandbox.presentation.api.v1.calculator import calculator_router
|
||
|
|
|
||
|
|
App = FastAPI(title="typosaurus-sandbox")
|
||
|
|
|
||
|
|
|
||
|
|
@App.get("/health")
|
||
|
|
def health() -> dict[str, str]:
|
||
|
|
return {"status": "ok"}
|
||
|
|
|
||
|
|
|
||
|
|
App.include_router(calculator_router)
|