UNPKG

@jrmc/adonis-attachment

Version:

Turn any field on your Lucid model to an attachment data type

15 lines (14 loc) 282 B
/** * @jrmc/adonis-attachment * * @license MIT * @copyright Jeremy Chaufourier <jeremy@chaufourier.fr> */ export default class Converter { options; binPaths; constructor(options, binPaths) { this.options = options; this.binPaths = binPaths; } }