kovetskiy / zabbixctl

Most effective way for operating in Zabbix Server
MIT License
139 stars 28 forks source link

Add go.mod to follow go1.11+ module style #27

Closed jooola closed 4 years ago

jooola commented 4 years ago

In order to modernize the build process we can make use of go modules. This allow us to build the project outside of GOPATH. This also bring some more benefits like fine grained dependencies management. More information can be found on golang release page and log.

kovetskiy commented 4 years ago

Thanks!