UNPKG

alclient

Version:

A node client for interacting with Adventure Land - The Code MMORPG. This package extends the functionality of 'alclient' by managing a mongo database.

9 lines 285 B
import pkg from "mongoose"; const { model } = pkg; import NPCSchema from "./npcs.schema.js"; export const NPCModel = model("npc", NPCSchema); NPCModel.createIndexes().catch((e) => { if (pkg.connection.readyState) console.error(e); }); //# sourceMappingURL=npcs.model.js.map