hyper/lib/actions/index.js

14 lines
220 B
JavaScript
Raw Normal View History

import rpc from '../rpc';
import INIT from '../constants';
2016-07-13 12:44:24 -08:00
export default function init() {
2016-10-04 20:02:39 -08:00
return dispatch => {
dispatch({
type: INIT,
effect: () => {
rpc.emit('init');
}
});
2016-10-04 11:44:10 -08:00
};
2016-07-13 12:44:24 -08:00
}