blob: 24f4013f731bb169a46729ce32cad4262d76ae25 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
import { db, MongooseCache } from "@fosscord/server-util";
import { NextFunction } from "express";
const Cache = new MongooseCache(db.collection("ratelimit"), [], { onlyEvents: false });
export default function RateLimit({}) {
return async (req: Request, res: Response, next: NextFunction) => {};
}
|