aboutsummaryrefslogtreecommitdiffstats
path: root/src/internal-server/app/Models/User.js
blob: 907710d8deea8878a0b368c0e1f04fa6af10bc27 (plain) (blame)
1
2
3
4
5
6
7
8
// File is required by AdonisJS but not used by the server
/** @type {typeof import('@adonisjs/lucid/src/Lucid/Model')} */
const Model = use('Model');

class User extends Model {
}

module.exports = User;