aboutsummaryrefslogtreecommitdiffstats
path: root/app/Models/Recipe.js
blob: bd9741114546d01d6b845df0ad197a8d01a863e7 (plain) (blame)
1
2
3
4
5
6
7
/** @type {typeof import('@adonisjs/lucid/src/Lucid/Model')} */
const Model = use('Model');

class Recipe extends Model {
}

module.exports = Recipe;