import { verifyAccountCredentials } from "@/lib/auth/accounts-store"; import type { SessionAccount } from "@/lib/auth/permissions"; export async function verifyCredentials( username: string, password: string, ): Promise { return verifyAccountCredentials(username, password); }