Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 257 Bytes

readme.md

File metadata and controls

16 lines (11 loc) · 257 Bytes

Stupid simple http client wrapping the go lang http package

import "github.com/stephanrotolante/simplehttp"

func main() {
	httpRequest := simplehttp.CreateHttpRequest("https://google.com")

	httpRequest
		.Post()
		.Body([]byte{})
		.Execute()
}