healthchecks_healthchecks/templates/docs/go.md
2020-12-28 14:06:54 +02:00

24 lines
329 B
Markdown

# Go
Below is an example of making an HTTP request to SITE_NAME from Go.
```go
package main
import "fmt"
import "net/http"
import "time"
func main() {
var client = &http.Client{
Timeout: 10 * time.Second,
}
_, err := client.Head("PING_URL")
if err != nil {
fmt.Printf("%s", err)
}
}
```