chore: fix import order in server mongoose schema

This commit is contained in:
Jonathan Barrow 2026-01-12 12:40:58 -05:00
parent 3158252166
commit cd5755745c
No known key found for this signature in database
GPG Key ID: 2A7DAA6DED5A77E5

View File

@ -2,8 +2,8 @@ import dgram from 'node:dgram';
import crypto from 'node:crypto';
import { Schema, model } from 'mongoose';
import uniqueValidator from 'mongoose-unique-validator';
import type { IServer, IServerConnectInfo, IServerMethods, ServerModel } from '@/types/mongoose/server';
import { LOG_WARN } from '@/logger';
import type { IServer, IServerConnectInfo, IServerMethods, ServerModel } from '@/types/mongoose/server';
// * Kinda ugly to slap this in with the Mongoose stuff but it's fine for now
// TODO - Maybe move this one day?