mirror of
https://github.com/fosrl/pangolin.git
synced 2025-12-11 18:38:15 +00:00
7 lines
177 B
TypeScript
7 lines
177 B
TypeScript
import { MemoryStore, Store } from "express-rate-limit";
|
|
|
|
export function createStore(): Store {
|
|
let rateLimitStore: Store = new MemoryStore();
|
|
return rateLimitStore;
|
|
}
|