spee.ch/react/sagas/index.js

12 lines
327 B
JavaScript
Raw Normal View History

2018-02-06 21:55:04 -08:00
import { all } from 'redux-saga/effects';
2018-02-07 23:02:57 -08:00
import { watchNewAssetRequest, watchShowNewAsset, watchNewChannelRequest, watchFileIsRequested } from './show';
2018-02-06 19:00:52 -08:00
export default function* rootSaga () {
yield all([
2018-02-07 13:26:07 -08:00
watchNewAssetRequest(),
watchShowNewAsset(),
2018-02-07 23:02:57 -08:00
watchNewChannelRequest(),
2018-02-06 21:55:04 -08:00
watchFileIsRequested(),
2018-02-06 19:00:52 -08:00
]);
}