/ihttp

A chained http call library

Primary LanguageGo

ihttp

A chained http call library

Quick Start

New().
  WithUrl("https://httpbin.org/get").
  Get().
  WithError(func(err error) { panic(err) }).
  ToString()