Skip to content

Commit

Permalink
Add replace directives to go.mod and specify real version in plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
chokoswitch committed Aug 29, 2023
1 parent 1ed61aa commit 3025f37
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion plugins/grpc/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/curioswitch/go-docs-handler/plugins/grpc
go 1.19

require (
github.com/curioswitch/go-docs-handler v0.0.0-20230824053343-938cee917c6d
github.com/curioswitch/go-docs-handler v0.1.1
google.golang.org/protobuf v1.31.0
)

Expand All @@ -17,3 +17,5 @@ require (
google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19 // indirect
google.golang.org/grpc v1.57.0 // indirect
)

replace github.com/curioswitch/go-docs-handler => ../..
4 changes: 3 additions & 1 deletion plugins/proto/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/curioswitch/go-docs-handler/plugins/proto
go 1.19

require (
github.com/curioswitch/go-docs-handler v0.0.0-20230824053343-938cee917c6d
github.com/curioswitch/go-docs-handler v0.1.1
github.com/kinbiko/jsonassert v1.1.1
google.golang.org/protobuf v1.31.0
)
Expand All @@ -12,3 +12,5 @@ require (
github.com/google/go-cmp v0.5.9 // indirect
github.com/magefile/mage v1.15.0 // indirect
)

replace github.com/curioswitch/go-docs-handler => ../..

0 comments on commit 3025f37

Please sign in to comment.