export interface NetworkProxy {
  get(url: string): Promise<Object>
  send(url: string, payload: any)
}