Created
April 22, 2020 01:49
-
-
Save franklinsales/b350ee59832b38777a5c20588cecf0f7 to your computer and use it in GitHub Desktop.
Golang Tip: replace in go.mod
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module github.com/acme/foo | |
go 1.12 | |
require ( | |
github.com/acme/bar v1.0.0 | |
) | |
replace github.com/acme/bar => /path/to/local/bar |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment