1 2 3 4 5 6 7
from fastapi import FastAPI base_endpoints = FastAPI() @base_endpoints.get('/health/') async def health(): return 'OK'