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

14 lines
349 B
Plaintext
Raw Normal View History

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