UNPKG

tom-framework

Version:

tom-framework for Node.js

13 lines (11 loc) 321 B
const require2 = require('tomjs/handlers/require2'); const BasePassword = require2('tomjs/controllers/auth/base_password'); class Passwor extends BasePassword { constructor() { super(); } async resetpassword(ctx) { await super.resetpassword(ctx); } } module.exports = Passwor