2025-07-14 22:21:04 -07:00
|
|
|
import { MemoryStore, Store } from "express-rate-limit";
|
|
|
|
|
|
|
|
export function createStore(): Store {
|
2025-07-22 19:07:43 +00:00
|
|
|
const rateLimitStore: Store = new MemoryStore();
|
2025-07-14 22:21:04 -07:00
|
|
|
return rateLimitStore;
|
|
|
|
}
|