| patch.example.com/direct v1.1.0 | |
| written by hand | |
| -- .mod -- | |
| module patch.example.com/direct | |
| require ( | |
| patch.example.com/indirect v1.0.0 | |
| ) | |
| -- .info -- | |
| {"Version":"v1.1.0"} | |
| -- go.mod -- | |
| module patch.example.com/direct | |
| require ( | |
| patch.example.com/indirect v1.0.0 | |
| ) | |
| -- direct.go -- | |
| package direct | |
| import _ "patch.example.com/indirect" |