from fastapi import FastAPI base_endpoints = FastAPI() @base_endpoints.get('/health/') async def health(): return 'OK'