Mailspring/app/internal_packages/attachments/lib/main.es6

11 lines
312 B
JavaScript

import { ComponentRegistry } from 'mailspring-exports';
import MessageAttachments from './message-attachments';
export function activate() {
ComponentRegistry.register(MessageAttachments, { role: 'MessageAttachments' });
}
export function deactivate() {
ComponentRegistry.unregister(MessageAttachments);
}