diff --git a/Gopkg.lock b/Gopkg.lock index f0663b7..dab14a8 100644 --- a/Gopkg.lock +++ b/Gopkg.lock @@ -5,7 +5,7 @@ branch = "master" name = "git.loafle.net/overflow/util-go" packages = ["net/ping"] - revision = "fe733fd0e1674f537b47bf5c720f603d87740721" + revision = "a2472a88ab6243321821dda3cac8b2045a2b3917" [[projects]] name = "github.com/google/gopacket" diff --git a/config/ping/ping.go b/config/ping/ping.go index abb16ba..bbf7962 100644 --- a/config/ping/ping.go +++ b/config/ping/ping.go @@ -7,15 +7,3 @@ import ( type PingOption struct { ounp.PingOption } - -type PingResponse struct { - ounp.PingResponse -} - -type PingSummary struct { - ounp.PingSummary -} - -type PingResult struct { - ounp.PingResult -} diff --git a/ping/ping.go b/ping/ping.go new file mode 100644 index 0000000..51b054a --- /dev/null +++ b/ping/ping.go @@ -0,0 +1,17 @@ +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 +}