mirror of
https://github.com/YuzuZensai/Minikura.git
synced 2026-09-13 10:49:21 +00:00
10 lines
216 B
TypeScript
10 lines
216 B
TypeScript
import { prisma } from "@minikura/db";
|
|
|
|
export namespace UserService {
|
|
export async function getUserByUsername(username: string) {
|
|
return await prisma.user.findUnique({
|
|
where: { username },
|
|
});
|
|
}
|
|
}
|