mirror of
https://github.com/kevin-DL/m3o-go.git
synced 2026-01-11 10:34:27 +00:00
18 lines
258 B
Go
Executable File
18 lines
258 B
Go
Executable File
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"go.m3o.com/ping"
|
|
)
|
|
|
|
// Ping an IP address
|
|
func main() {
|
|
pingService := ping.NewPingService(os.Getenv("M3O_API_TOKEN"))
|
|
rsp, err := pingService.Ip(&ping.IpRequest{
|
|
Address: "google.com",
|
|
})
|
|
fmt.Println(rsp, err)
|
|
}
|