UNPKG

@adminjs/express

Version:

This is an official AdminJS plugin which integrates it with Express.js framework

13 lines (8 loc) 216 B
import mongoose from "mongoose"; const { Schema } = mongoose; const AdminSchema = new Schema({ email: String, password: String, }); const Admin = mongoose.model("Admin", AdminSchema); module.exports = Admin;