mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:25:31 +08:00
12 lines
315 B
Text
12 lines
315 B
Text
|
import {ExtensionRegistry} from 'nylas-exports'
|
||
|
import * as SendAndArchiveExtension from './send-and-archive-extension'
|
||
|
|
||
|
|
||
|
export function activate() {
|
||
|
ExtensionRegistry.Composer.register(SendAndArchiveExtension)
|
||
|
}
|
||
|
|
||
|
export function deactivate() {
|
||
|
ExtensionRegistry.Composer.unregister(SendAndArchiveExtension)
|
||
|
}
|