mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 08:13:56 +10:00
6 lines
130 B
TypeScript
6 lines
130 B
TypeScript
import { prisma } from '@documenso/prisma';
|
|
|
|
export const getDocsCount = async () => {
|
|
return await prisma.document.count();
|
|
};
|