implemented ping and reachibility analyzer functionality

This commit is contained in:
Łukasz Budnik
2023-11-15 20:06:09 +01:00
parent 3ccac4010f
commit 1d44df4ba9
8 changed files with 312 additions and 24 deletions

9
go.mod
View File

@@ -1,9 +1,16 @@
module github.com/lukaszbudnik/yosoy
go 1.16
go 1.21
require (
github.com/gorilla/handlers v1.5.2
github.com/gorilla/mux v1.8.1
github.com/stretchr/testify v1.8.4
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/felixge/httpsnoop v1.0.3 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)