mirror of
https://github.com/better-auth/better-auth.git
synced 2026-05-24 16:11:53 -05:00
8 lines
186 B
TypeScript
8 lines
186 B
TypeScript
import { exportSearchIndexes } from "@/lib/export-search-indexes";
|
|
|
|
export const revalidate = false;
|
|
|
|
export async function GET() {
|
|
return Response.json(await exportSearchIndexes());
|
|
}
|