Below is an example of making an HTTP request to Штаб from Go.
package main
import "fmt"
import "net/http"
import "time"
func main() {
var client = &http.Client{
Timeout: 10 * time.Second,
}
_, err := client.Head("https://shtab.5-129-195-59.sslip.io/ping/your-uuid-here")
if err != nil {
fmt.Printf("%s", err)
}
}