import { combineEpics, Epic } from 'redux-observable'
import { connectToPusher, subscribeToChannel } from './connect'
import { pusherHealthcheck } from './healthcheck'
import { subscribeToPings } from './couriers'
import { RootState } from '../reducers'

export const cosmoPusherEpics = combineEpics(
    connectToPusher,
    subscribeToChannel,
    subscribeToPings,
    pusherHealthcheck,
)

