Mailspring/internal_packages/search-index/lib/main.es6

17 lines
458 B
Text
Raw Normal View History

import ThreadSearchIndexStore from './thread-search-index-store'
import ContactSearchIndexer from './contact-search-indexer'
import EventSearchIndexer from './event-search-indexer'
export function activate() {
ThreadSearchIndexStore.activate()
ContactSearchIndexer.activate()
EventSearchIndexer.activate()
}
export function deactivate() {
ThreadSearchIndexStore.deactivate()
ContactSearchIndexer.deactivate()
EventSearchIndexer.deactivate()
}