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