mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-04 07:10:06 +08:00
10 lines
312 B
JavaScript
10 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);
|
|
}
|