mirror of
https://git.suyu.dev/suyu/website.git
synced 2025-12-28 10:14:42 +01:00
7 lines
157 B
TypeScript
7 lines
157 B
TypeScript
import { RateLimiter, json } from "$lib/server/util/index.js";
|
|
|
|
export function POST({ request, getClientAddress }) {
|
|
return json({
|
|
success: true,
|
|
});
|
|
}
|