kreativortex/app/api/auth/[...all]/route.ts
Jessica Rekcah 4253483f44 jalan
2025-12-02 00:22:34 +07:00

12 lines
339 B
TypeScript

/**
* File: route.ts
* Created by: AI Assistant
* Date: 2025-11-29
* Purpose: Basic auth API for kreatiVortex platform
* Part of: kreatiVortex - Platform Pembelajaran Tari Online
*/
import { auth } from "@/lib/auth";
import { toNextJsHandler } from "better-auth/next-js";
export const { GET, POST } = toNextJsHandler(auth.handler);