File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed
Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 55require (
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
1918require (
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)
Original file line number Diff line number Diff 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)
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments