Skip to content

Commit

Permalink
Merge pull request #31 from joshuaisaact/pino
Browse files Browse the repository at this point in the history
fix: non-building typescript error
  • Loading branch information
joshuaisaact authored Nov 22, 2024
2 parents 5df9562 + c92e4a5 commit dfbbfc1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/__mocks__/rate-limits.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export const llmLimiter = jest.fn((req, res, next) => next());
export const generalLimiter = jest.fn((req, res, next) => next());
export const llmLimiter = jest.fn((next) => next());
export const generalLimiter = jest.fn((next) => next());

0 comments on commit dfbbfc1

Please sign in to comment.