UNPKG

@fdm-monster/server

Version:

FDM Monster is a bulk OctoPrint manager to set up, configure and monitor 3D printers. Our aim is to provide extremely optimized websocket performance and reliability.

20 lines (19 loc) 475 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "Permission", { enumerable: true, get: function() { return Permission; } }); const _mongoose = require("mongoose"); const PermissionSchema = new _mongoose.Schema({ name: { type: String, required: true } }); const Permission = (0, _mongoose.model)("Permission", PermissionSchema); //# sourceMappingURL=Permission.js.map