This commit is contained in:
crusader 2018-09-18 00:32:03 +09:00
parent 966cffa755
commit 2d11df599b
2 changed files with 0 additions and 34 deletions

View File

@ -1,9 +0,0 @@
package ping
import (
ounp "git.loafle.net/overflow/util-go/net/ping"
)
type PingOption struct {
ounp.PingOption
}

View File

@ -1,25 +0,0 @@
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
}
func NewPingResult() *PingResult {
r := &PingResult{}
r.Responses = make(map[int]ounp.Response, 0)
r.Summary = &PingSummary{}
return r
}