test endpoint

This commit is contained in:
Will Freeman
2026-01-01 21:30:06 -06:00
parent f234567adf
commit 9a5ae4b1c3

View File

@@ -39,6 +39,10 @@ app.head('/healthcheck', (req: Request, res: Response) => {
res.status(200).end();
});
app.get('/fuck', (req: Request, res: Response) => {
res.json({ fuck: "yeah" })
});
app.get('/sponsors/github', async (req: Request, res: Response) => {
try {
const sponsors = await githubClient.getSponsors('frillweeman');