diff --git a/go.mod b/go.mod index ba36d2e..0df34dd 100644 --- a/go.mod +++ b/go.mod @@ -1,13 +1,14 @@ module example.com/localmodexample +go 1.13 + require ( example.org/hello v0.0.0 example.org/utils v0.0.0 ) -replace example.org/hello => ./hello - -replace example.org/utils => ./utils - -go 1.13 +replace ( + example.org/hello => ./hello + example.org/utils => ./utils +)