© 2026 Hedgehog Software, LLC
export async function getAllUsers() { return await db.select().from(user); }
export async function addUser(name: string, email: string) { return await db.insert(user).values({ name, email, emailVerified: false }); }
Join the Discord to ask follow-up questions and connect with the community
10,204 Members