2017-07-03 22:21:19 -05:00

11 lines
192 B
JavaScript

// @flow
import BaseNode from './base';
export default class RPCNode extends BaseNode {
endpoint: string;
constructor(endpoint: string) {
super();
this.endpoint = endpoint;
}
}