mirror of
https://github.com/fosrl/pangolin.git
synced 2026-05-03 16:22:03 +00:00
2259879595
Co-authored-by: oschwartz10612 <4999704+oschwartz10612@users.noreply.github.com>
7 lines
179 B
TypeScript
7 lines
179 B
TypeScript
import { MemoryStore, Store } from "express-rate-limit";
|
|
|
|
export function createStore(): Store {
|
|
const rateLimitStore: Store = new MemoryStore();
|
|
return rateLimitStore;
|
|
}
|