summaryrefslogtreecommitdiff
path: root/opendc-web/opendc-web-ui/src/redux/sagas/index.js
blob: 0fabdb6ddad925ceb280ec0c430c6139d89dd5e7 (plain)
1
2
3
4
5
6
7
import { fork } from 'redux-saga/effects'
import { watchServer, updateServer } from './topology'

export default function* rootSaga() {
    yield fork(watchServer)
    yield fork(updateServer)
}