Http.fs icon indicating copy to clipboard operation
Http.fs copied to clipboard

Add some nice methods

Open haf opened this issue 8 years ago • 0 comments


module Request =
  open System
  let path resource (r: Request) =
    let ub = UriBuilder r.url
    ub.Path <- resource
    { r with url = ub.Uri }
  let resource resource r =
    path resource r

  let method m r =
    { r with ``method`` = m }

haf avatar Mar 27 '17 10:03 haf