Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 406 Bytes

README.md

File metadata and controls

14 lines (11 loc) · 406 Bytes

Curler

This is a go program to curl a specific url asynchronously. It is configurable via two cli flags:

`-rps 10` // will send 10 requests every second
`-url http://google.com` // will curl google.com
`-body` // print response body of request
`-k` // use insecure tls

Dev usage

`make build; ./bin/app -k -rps 2 -url https://google.com`

Run all ci

`make help`
`make ci`