website/src/routes/api/limit/+server.ts
2024-03-19 17:45:40 +00:00

7 lines
157 B
TypeScript

import { RateLimiter, json } from "$lib/server/util/index.js";
export function POST({ request, getClientAddress }) {
return json({
success: true,
});
}