A11yWatch/a11ywatch-core

View on GitHub
src/web/routes_groups/github-actions.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { FastifyInstance } from "fastify";

export const setGithubActionRoutes = (app: FastifyInstance) => {
  app.post("/api/github-action/event", async (_req, res) => {
    // const body = req.body;
    // console.log(body);
    res.send(true);
  });
};