diff --git a/servers/themes/src/api.ts b/servers/themes/src/api.ts index 2aa810856..bd64fcc5b 100644 --- a/servers/themes/src/api.ts +++ b/servers/themes/src/api.ts @@ -59,5 +59,8 @@ export const ThemesAPI = router({ sync: publicProcedure.query(() => { syncThemes(); return true; + }), + health: publicProcedure.query(() => { + return "Healthy"; }) });