model/config/ping/ping.go

22 lines
260 B
Go
Raw Normal View History

2018-09-17 11:52:44 +00:00
package ping
import (
ounp "git.loafle.net/overflow/util-go/net/ping"
)
2018-09-17 12:55:13 +00:00
type PingOption struct {
ounp.PingOption
2018-09-17 11:52:44 +00:00
}
2018-09-17 12:55:13 +00:00
type PingResponse struct {
ounp.PingResponse
2018-09-17 11:52:44 +00:00
}
2018-09-17 12:55:13 +00:00
type PingSummary struct {
ounp.PingSummary
2018-09-17 11:52:44 +00:00
}
type PingResult struct {
ounp.PingResult
}