Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gc committed Jul 2, 2024
1 parent 2891f30 commit 7a5c000
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 49 deletions.
46 changes: 0 additions & 46 deletions src/lib/http/routes/commands.ts

This file was deleted.

4 changes: 1 addition & 3 deletions src/lib/http/routes/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import type { FastifyServer } from '../types';
import { commandsRoute } from './commands';
import githubSponsors from './webhooks/githubSponsors';
import { patreonRoute } from './webhooks/patreon';

export const initRoutes = (server: FastifyServer) =>
[githubSponsors, commandsRoute, patreonRoute].map(route => route(server));
export const initRoutes = (server: FastifyServer) => [githubSponsors, patreonRoute].map(route => route(server));

0 comments on commit 7a5c000

Please sign in to comment.