diff --git a/README.md b/README.md index 77c6966..239660e 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ At the time not all Zabbix API methods are implemented, but work in progress. ## Install ``` -go get github.com/nixys/nxs-go-zabbix +go get github.com/nixys/nxs-go-zabbix/v2 ``` ## Example of usage @@ -23,7 +23,7 @@ import ( "fmt" "os" - "github.com/nixys/nxs-go-zabbix" + "github.com/nixys/nxs-go-zabbix/v2" ) func zabbixLogin(z *zabbix.Context, zbxHost, zbxUsername, zbxPassword string) { diff --git a/go.mod b/go.mod index 4dd5ca6..cdcf092 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/nixys/nxs-go-zabbix +module github.com/nixys/nxs-go-zabbix/v2 go 1.13