forked from Wroclaw/WorkshopTasker
10 lines
207 B
TypeScript
10 lines
207 B
TypeScript
|
import { defineEventHandler } from "h3";
|
||
|
|
||
|
import { database } from "~/server/utils/database";
|
||
|
|
||
|
export default defineEventHandler(async (e) => {
|
||
|
return {
|
||
|
count: await database.order.count({}),
|
||
|
};
|
||
|
});
|