18 lines
215 B
Go
18 lines
215 B
Go
package ping
|
|
|
|
import (
|
|
ounp "git.loafle.net/overflow/util-go/net/ping"
|
|
)
|
|
|
|
type PingResponse struct {
|
|
ounp.PingResponse
|
|
}
|
|
|
|
type PingSummary struct {
|
|
ounp.PingSummary
|
|
}
|
|
|
|
type PingResult struct {
|
|
ounp.PingResult
|
|
}
|