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 299 B
import pkg from "mongoose"; const { model } = pkg; import DeathSchema from "./deaths.schema.js"; export const DeathModel = model("Death", DeathSchema); DeathModel.createIndexes().catch((e) => { if (pkg.connection.readyState) console.error(e); }); //# sourceMappingURL=deaths.model.js.map