import tokenSchema from '~/schema/token'; import type * as t from '~/types'; /** * Creates or returns the Token model using the provided mongoose instance and schema */ export function createTokenModel(mongoose: typeof import('mongoose')) { return mongoose.models.Token || mongoose.model('Token', tokenSchema); }