Skip to content

Commit

Permalink
Move tools.go into tools pkg (#527)
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiught authored Nov 21, 2022
1 parent 8652df0 commit df69c1b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ deps: ## Download dependencies

$(GO_BIN)/mockgen:
${call print, "Installing mockgen"}
@go install -v github.com/golang/mock/mockgen@v1.4.4
@go install -v github.com/golang/mock/mockgen@latest

$(GO_BIN)/golangci-lint:
${call print, "Installing golangci-lint"}
Expand Down
4 changes: 3 additions & 1 deletion tools.go → tools/tools.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
//go:build tools
// +build tools

package main
package tools

import (
// Generator for mocks.
_ "github.com/golang/mock/mockgen"
)

0 comments on commit df69c1b

Please sign in to comment.