UNPKG

@jrmc/adonis-attachment

Version:

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

16 lines (15 loc) 630 B
/** * @jrmc/adonis-attachment * * @license MIT * @copyright Jeremy Chaufourier <jeremy@chaufourier.fr> */ // Main service export { default as AttachmentRecordService } from './attachment_recorder_service.js'; // Specialized services export { AttachmentTransactionService } from './attachment_transaction_service.js'; export { AttachmentPersisterService } from './attachment_persister_service.js'; export { AttachmentVariantService } from './attachment_variant_service.js'; export { AttachmentDetachmentService } from './attachment_detachment_service.js'; // Utilities export { AttachmentUtils } from './attachment_utils.js';