server(theme): add health endpoint

This commit is contained in:
Abdullah Atta
2024-07-17 15:25:52 +05:00
parent e05e52f870
commit 5439578fcf

View File

@@ -59,5 +59,8 @@ export const ThemesAPI = router({
sync: publicProcedure.query(() => {
syncThemes();
return true;
}),
health: publicProcedure.query(() => {
return "Healthy";
})
});