hyper/lib/actions/index.js

10 lines
140 B
JavaScript
Raw Normal View History

2016-10-04 12:27:27 -08:00
import {INIT} from '../constants';
import rpc from '../rpc';
2016-07-13 12:44:24 -08:00
export function init() {
rpc.emit('init');
return {
type: INIT
2016-10-04 11:44:10 -08:00
};
2016-07-13 12:44:24 -08:00
}