dmitri.shuralyov.com/service/change/...

add minimal go.mod

At this time, the go.mod file specifies only the module path, the Go
language version, the minimum required version of the go-gerrit module
dependency, and nothing more.

In the future, it can be expanded to specify additional information,
such as other required modules and their versions, and so on.
dmitshur committed 2 years ago commit 96ed021e15235cb4abcdaa86b88cc271e47f04c1
Collapse all
go.mod
@@ -0,0 +1,5 @@
module dmitri.shuralyov.com/service/change

go 1.19

require github.com/andygrunwald/go-gerrit v0.0.0-20220608063906-28cf26f84ecc
go.sum
@@ -0,0 +1,2 @@
github.com/andygrunwald/go-gerrit v0.0.0-20220608063906-28cf26f84ecc h1:uUBFnrgkztFta0ztaovyFJWhjz8FX3pbXIgPL6D84Zc=
github.com/andygrunwald/go-gerrit v0.0.0-20220608063906-28cf26f84ecc/go.mod h1:aqcjwEnmLLSalFNYR0p2ttnEXOVVRctIzsUMHbEcruU=