First commit

This commit is contained in:
2025-12-25 11:16:59 +01:00
commit 0c5ca09a63
720 changed files with 329234 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
const LIMITER_TYPES = {
MEMORY: 'memory',
CLUSTER: 'cluster',
MEMCACHE: 'memcache',
MONGO: 'mongo',
REDIS: 'redis',
MYSQL: 'mysql',
POSTGRES: 'postgres',
};
const ERR_UNKNOWN_LIMITER_TYPE_MESSAGE = 'Unknown limiter type. Use one of LIMITER_TYPES constants.';
module.exports = {
LIMITER_TYPES,
ERR_UNKNOWN_LIMITER_TYPE_MESSAGE,
};