mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Add PocketIntegration service to the list
This commit is contained in:
parent
c3bfb593c6
commit
9c7f6fefca
1 changed files with 5 additions and 1 deletions
|
|
@ -1,7 +1,11 @@
|
|||
import { ReadwiseIntegration } from './readwise'
|
||||
import { IntegrationService } from './integration'
|
||||
import { PocketIntegration } from './pocket'
|
||||
|
||||
const integrations: IntegrationService[] = [new ReadwiseIntegration()]
|
||||
const integrations: IntegrationService[] = [
|
||||
new ReadwiseIntegration(),
|
||||
new PocketIntegration(),
|
||||
]
|
||||
|
||||
export const getIntegrationService = (name: string): IntegrationService => {
|
||||
const service = integrations.find((s) => s.name === name)
|
||||
|
|
|
|||
Loading…
Reference in a new issue