const Schwifty = require('@hapipal/schwifty') const userSchema = require('../schemas/users') /** * @typedef User */ module.exports = class User extends Schwifty.Model { static get tableName() { return 'users' } static get joiSchema() { return userSchema.single } }