Skip to content

Commit dd08eeb

Browse files
committed
fix missing imports
Signed-off-by: Markus Blaschke <mblaschke82@gmail.com>
1 parent 4d71887 commit dd08eeb

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ go 1.17
55
require (
66
github.com/go-resty/resty/v2 v2.7.0
77
github.com/golang/protobuf v1.5.2 // indirect
8-
github.com/jessevdk/go-flags v1.5.0
98
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
109
github.com/prometheus/client_golang v1.12.1
1110
github.com/prometheus/common v0.32.1 // indirect
@@ -17,6 +16,7 @@ require (
1716
)
1817

1918
require (
19+
github.com/jessevdk/go-flags v1.5.0
2020
github.com/patrickmn/go-cache v2.1.0+incompatible
2121
github.com/webdevops/go-common v0.0.0-20220406110653-237539a358b2
2222
)

main.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@ import (
88
"runtime"
99
"strings"
1010

11+
"github.com/jessevdk/go-flags"
1112
"github.com/prometheus/client_golang/prometheus/promhttp"
1213
log "github.com/sirupsen/logrus"
14+
1315
AzureDevops "github.com/webdevops/azure-devops-exporter/azure-devops-client"
1416
"github.com/webdevops/azure-devops-exporter/config"
1517
)

servicediscovery.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ import (
44
"sync"
55
"time"
66

7+
cache "github.com/patrickmn/go-cache"
78
log "github.com/sirupsen/logrus"
9+
810
AzureDevops "github.com/webdevops/azure-devops-exporter/azure-devops-client"
911
)
1012

0 commit comments

Comments
 (0)