mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-14 12:58:39 -09:00
9 lines
145 B
JavaScript
9 lines
145 B
JavaScript
import {INIT} from '../constants/index';
|
|
import rpc from '../rpc';
|
|
|
|
export function init() {
|
|
rpc.emit('init');
|
|
return {
|
|
type: INIT
|
|
}
|
|
}
|