aboutsummaryrefslogtreecommitdiffstats
path: root/src/server/app/Models/Service.js
blob: 20679feb1a41bf882f8a08da79315bb74ea3a6ac (plain) (blame)
1
2
3
4
5
6
7
8

/** @type {typeof import('@adonisjs/lucid/src/Lucid/Model')} */
const Model = use('Model');

class Service extends Model {
}

module.exports = Service;