import {} from 'lodash'

export class RpcValidator {
  static validateUrl(url: string) {
    // TODO
  }

  static validateMethod(method: string) {
    // TODO
  }

  static validateId(id: number) {
    // TODO
  }
}
