Skip to content

Commit

Permalink
Merge pull request #5 from utgwkk/add-mockgen-to-tools-dep
Browse files Browse the repository at this point in the history
add mockgen to tools dependencies
  • Loading branch information
utgwkk committed Jul 10, 2023
2 parents 8cf829f + 0c0d64f commit 2eb2a1a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ require (
github.com/gkampitakis/go-snaps v0.4.8
github.com/stoewer/go-strcase v1.3.0
github.com/stretchr/testify v1.8.4
go.uber.org/mock v0.2.0
golang.org/x/exp v0.0.0-20230626212559-97b1e661b5df
golang.org/x/tools v0.11.0
)
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ github.com/tidwall/pretty v1.2.1 h1:qjsOFOWWQl+N3RsoF5/ssm1pHmJJwhjlSbZ51I6wMl4=
github.com/tidwall/pretty v1.2.1/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU=
github.com/tidwall/sjson v1.2.5 h1:kLy8mja+1c9jlljvWTlSazM7cKDRfJuR/bOJhcY5NcY=
github.com/tidwall/sjson v1.2.5/go.mod h1:Fvgq9kS/6ociJEDnK0Fk1cpYF4FIW6ZF7LAe+6jwd28=
go.uber.org/mock v0.2.0 h1:TaP3xedm7JaAgScZO7tlvlKrqT0p7I6OsdGB5YNSMDU=
go.uber.org/mock v0.2.0/go.mod h1:J0y0rp9L3xiff1+ZBfKxlC1fz2+aO16tw0tsDOixfuM=
golang.org/x/exp v0.0.0-20230626212559-97b1e661b5df h1:UA2aFVmmsIlefxMk29Dp2juaUSth8Pyn3Tq5Y5mJGME=
golang.org/x/exp v0.0.0-20230626212559-97b1e661b5df/go.mod h1:FXUEEKJgO7OQYeo8N01OfiKP8RXMtf6e8aTskBGqWdc=
golang.org/x/mod v0.12.0 h1:rmsUpXtvNzj340zd98LZ4KntptpfRHwpFOHG188oHXc=
Expand Down
6 changes: 6 additions & 0 deletions tools.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
//go:build tools
package tools

import (
_ "go.uber.org/mock/mockgen"
)

0 comments on commit 2eb2a1a

Please sign in to comment.