import { defineMongooseModel } from "#nuxt/mongoose";export const LogModel = defineMongooseModel({ name: 'Log', schema: { initiator: { type: 'string', required: true, }, target: { type: 'string', required: true, }, reason: 'string', argument: 'string', logType: 'string', date: Date }})