made ping continuous to make response quicker

This commit is contained in:
2023-11-15 20:18:43 +01:00
parent 43b89e92ff
commit f5143c56a9
4 changed files with 134 additions and 37 deletions

13
go.mod
View File

@@ -2,11 +2,14 @@ module ping-package
go 1.19
require github.com/prometheus-community/pro-bing v0.1.0
require (
github.com/montanaflynn/stats v0.7.1
github.com/prometheus-community/pro-bing v0.3.0
)
require (
github.com/google/uuid v1.3.0 // indirect
golang.org/x/net v0.9.0 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/sys v0.7.0 // indirect
github.com/google/uuid v1.4.0 // indirect
golang.org/x/net v0.18.0 // indirect
golang.org/x/sync v0.5.0 // indirect
golang.org/x/sys v0.14.0 // indirect
)