34 lines
610 B
TypeScript
34 lines
610 B
TypeScript
import { RateLimiterMemory } from "rate-limiter-flexible"
|
|
|
|
export const saveFileRL = new RateLimiterMemory({
|
|
points: 2,
|
|
duration: 1,
|
|
})
|
|
|
|
export const MAX_BODY_SIZE = 5 * 1024 * 1024
|
|
|
|
export const createFileRL = new RateLimiterMemory({
|
|
points: 1,
|
|
duration: 2,
|
|
})
|
|
|
|
export const createFolderRL = new RateLimiterMemory({
|
|
points: 1,
|
|
duration: 2,
|
|
})
|
|
|
|
export const renameFileRL = new RateLimiterMemory({
|
|
points: 1,
|
|
duration: 2,
|
|
})
|
|
|
|
export const deleteFileRL = new RateLimiterMemory({
|
|
points: 1,
|
|
duration: 2,
|
|
})
|
|
|
|
export const deleteFolderRL = new RateLimiterMemory({
|
|
points: 1,
|
|
duration: 2,
|
|
})
|