22 lines
246 B
Go
22 lines
246 B
Go
|
package ping
|
||
|
|
||
|
import (
|
||
|
ounp "git.loafle.net/overflow/util-go/net/ping"
|
||
|
)
|
||
|
|
||
|
type PingOptions struct {
|
||
|
ounp.PingOptions
|
||
|
}
|
||
|
|
||
|
type Response struct {
|
||
|
ounp.Response
|
||
|
}
|
||
|
|
||
|
type Summary struct {
|
||
|
ounp.Summary
|
||
|
}
|
||
|
|
||
|
type PingResult struct {
|
||
|
ounp.PingResult
|
||
|
}
|