Skip to content
This repository has been archived by the owner on Oct 3, 2023. It is now read-only.

Commit

Permalink
Move internal/tools in its own module
Browse files Browse the repository at this point in the history
Signed-off-by: Bogdan Drutu <[email protected]>
  • Loading branch information
bogdandrutu committed Mar 9, 2021
1 parent 0d1cd73 commit 53d3e3a
Show file tree
Hide file tree
Showing 6 changed files with 687 additions and 435 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ lint:

.PHONY: install-tools
install-tools:
go install golang.org/x/tools/cmd/cover
go install github.com/golangci/golangci-lint/cmd/golangci-lint
cd internal/tools && go install golang.org/x/tools/cmd/cover
cd internal/tools && go install github.com/golangci/golangci-lint/cmd/golangci-lint

9 changes: 7 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
module contrib.go.opencensus.io/exporter/prometheus

require (
github.com/golangci/golangci-lint v1.38.0
github.com/google/go-cmp v0.5.5
github.com/kr/text v0.2.0 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/prometheus/client_golang v1.9.0
github.com/prometheus/statsd_exporter v0.20.0
github.com/sirupsen/logrus v1.8.0 // indirect
github.com/stretchr/testify v1.7.0 // indirect
go.opencensus.io v0.23.0
golang.org/x/sys v0.0.0-20210308170721-88b6017d0656 // indirect
golang.org/x/tools v0.1.0
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)

go 1.13
Loading

0 comments on commit 53d3e3a

Please sign in to comment.