2016-01-27 11:34:44 -08:00
|
|
|
import errSaga from './err-saga';
|
|
|
|
import titleSaga from './title-saga';
|
2016-03-02 16:33:44 -08:00
|
|
|
import localStorageSaga from './local-storage-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-01-27 11:34:44 -08:00
|
|
|
|
2016-05-11 21:14:08 -07:00
|
|
|
export default [
|
|
|
|
errSaga,
|
|
|
|
titleSaga,
|
|
|
|
localStorageSaga,
|
|
|
|
hardGoToSaga,
|
2016-05-20 12:42:26 -07:00
|
|
|
windowSaga,
|
|
|
|
executeChallengeSaga,
|
2016-05-27 22:07:10 -07:00
|
|
|
frameSaga,
|
|
|
|
codeStorageSaga
|
2016-05-11 21:14:08 -07:00
|
|
|
];
|