mirror of
https://github.com/fosrl/pangolin.git
synced 2025-08-14 22:53:45 +02: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;
|
||
|
}
|