chore(auth): move auth.ts to src/lib directory

This commit is contained in:
cfngc4594 2025-03-12 22:46:01 +08:00
parent c6cba8f504
commit 574a98e58e
3 changed files with 2 additions and 2 deletions

View File

@ -1,3 +1,3 @@
import { handlers } from "@/auth";
import { handlers } from "@/lib/auth";
export const { GET, POST } = handlers;

View File

@ -17,7 +17,7 @@ import {
DropdownMenuSeparator,
DropdownMenuTrigger,
} from "@/components/ui/dropdown-menu";
import { auth, signIn, signOut } from "@/auth";
import { auth, signIn, signOut } from "@/lib/auth";
import { Skeleton } from "@/components/ui/skeleton";
import { SettingsButton } from "@/components/settings-button";