aboutsummaryrefslogtreecommitdiffstats
path: root/src/internal-server/app/Models/User.js
blob: f17f04c3e47fe81b7b6eddbd48a5dcf56c6f6010 (plain) (blame)
1
2
3
4
5
6
7
// 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;