2016-01-27 11:34:44 -08:00
|
|
|
import errSaga from './err-saga';
|
|
|
|
import titleSaga from './title-saga';
|
2016-03-02 22:19:04 -08:00
|
|
|
import hardGoToSaga from './hard-go-to-saga';
|
2016-05-11 21:14:08 -07:00
|
|
|
import windowSaga from './window-saga';
|
2016-05-20 12:42:26 -07:00
|
|
|
import executeChallengeSaga from './execute-challenge-saga';
|
|
|
|
import frameSaga from './frame-saga';
|
2016-05-27 22:07:10 -07:00
|
|
|
import codeStorageSaga from './code-storage-saga';
|
2016-06-03 23:34:28 -07:00
|
|
|
import gitterSaga from './gitter-saga';
|
2016-06-17 22:20:20 -07:00
|
|
|
import mouseTrapSaga from './mouse-trap-saga';
|
2016-07-21 16:35:37 -07:00
|
|
|
import analyticsSaga from './analytics-saga';
|
2016-08-05 14:05:57 -07:00
|
|
|
import nightModeSaga from './night-mode-saga';
|
2016-01-27 11:34:44 -08:00
|
|
|
|
2016-05-11 21:14:08 -07:00
|
|
|
export default [
|
|
|
|
errSaga,
|
|
|
|
titleSaga,
|
|
|
|
hardGoToSaga,
|
2016-05-20 12:42:26 -07:00
|
|
|
windowSaga,
|
|
|
|
executeChallengeSaga,
|
2016-05-27 22:07:10 -07:00
|
|
|
frameSaga,
|
2016-06-03 23:34:28 -07:00
|
|
|
codeStorageSaga,
|
2016-06-17 22:20:20 -07:00
|
|
|
gitterSaga,
|
2016-07-21 16:35:37 -07:00
|
|
|
mouseTrapSaga,
|
2016-08-05 14:05:57 -07:00
|
|
|
analyticsSaga,
|
|
|
|
nightModeSaga
|
2016-05-11 21:14:08 -07:00
|
|
|
];
|