dev_arc_aws/backend/src/integrations/registry.ts

21 lines
555 B
TypeScript
Raw Normal View History

import type { IntegrationAdapter, IntegrationType } from './types.js'
import { uptimeKuma } from './uptimeKuma.js'
import { docker } from './docker.js'
import { proxmox } from './proxmox.js'
import { netbird } from './netbird.js'
import { cloudflare } from './cloudflare.js'
import { weather } from './weather.js'
import { aws } from './aws.js'
import { ssh } from './ssh.js'
export const adapterRegistry: Record<IntegrationType, IntegrationAdapter> = {
uptime_kuma: uptimeKuma,
docker,
proxmox,
netbird,
cloudflare,
aws,
weather,
ssh,
}