11 lines
206 B
JavaScript
Raw Normal View History

2017-07-04 05:25:01 +04:00
// @flow
import BaseNode from './base';
export default class RPCNode extends BaseNode {
endpoint: string;
constructor(endpoint: string) {
super();
this.endpoint = endpoint;
}
}