mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-26 17:06:23 +02:00
add rate-limiting
This commit is contained in:
parent
024f6c75cc
commit
200e8d2e38
9 changed files with 188 additions and 2 deletions
6
apps/rowboat/app/lib/client_utils.ts
Normal file
6
apps/rowboat/app/lib/client_utils.ts
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
export class QueryLimitError extends Error {
|
||||
constructor(message: string = 'Query limit exceeded') {
|
||||
super(message);
|
||||
this.name = 'QueryLimitError';
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue