diff --git a/cmd/examples/base_example/main.go b/cmd/examples/base_example/main.go index c89b210..4612868 100644 --- a/cmd/examples/base_example/main.go +++ b/cmd/examples/base_example/main.go @@ -4,13 +4,14 @@ import ( "bytes" "flag" "fmt" - darknet "go-darknet" "image" "image/jpeg" "log" "math" "os" + darknet "github.com/LdDl/go-darknet" + "github.com/disintegration/imaging" ) diff --git a/cmd/examples/rest_example/main.go b/cmd/examples/rest_example/main.go index 9c2ba39..4099e3b 100644 --- a/cmd/examples/rest_example/main.go +++ b/cmd/examples/rest_example/main.go @@ -11,7 +11,7 @@ import ( "log" "net/http" - "go-darknet" + darknet "github.com/LdDl/go-darknet" ) var configFile = flag.String("configFile", "", diff --git a/go.mod b/go.mod index 11ab3be..69878e4 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module go-darknet +module github.com/LdDl/go-darknet go 1.17