diff options
author | Julien Dessaux | 2021-04-23 16:51:22 +0200 |
---|---|---|
committer | Julien Dessaux | 2021-04-23 16:51:22 +0200 |
commit | 38d9c881b3b5ece91f428c87f0b7bb9efb3e88a8 (patch) | |
tree | d3f7167fae6388f4db35a63e660d1816c9c2943e /state/job.go | |
parent | Fixed wrongfully hardcoded path in tests. (diff) | |
download | bareos-zabbix-check-38d9c881b3b5ece91f428c87f0b7bb9efb3e88a8.tar.gz bareos-zabbix-check-38d9c881b3b5ece91f428c87f0b7bb9efb3e88a8.tar.bz2 bareos-zabbix-check-38d9c881b3b5ece91f428c87f0b7bb9efb3e88a8.zip |
Updated for go 1.16 modules1.2
Diffstat (limited to '')
-rw-r--r-- | pkg/state/job.go (renamed from state/job.go) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/state/job.go b/pkg/state/job.go index e8333ff..e86bc8e 100644 --- a/state/job.go +++ b/pkg/state/job.go @@ -1,8 +1,6 @@ package state import ( - "bareos-zabbix-check/job" - "bareos-zabbix-check/utils" "bytes" "encoding/binary" "fmt" @@ -10,6 +8,8 @@ import ( "regexp" "time" + "git.adyxax.org/adyxax/bareos-zabbix-check/pkg/job" + "git.adyxax.org/adyxax/bareos-zabbix-check/pkg/utils" "github.com/pkg/errors" ) |