Text file src/cmd/go/testdata/mod/patch.example.com_direct_v1.1.0.txt
1 patch.example.com/direct v1.1.0 2 written by hand 3 4 -- .mod -- 5 module patch.example.com/direct 6 7 require ( 8 patch.example.com/indirect v1.0.0 9 ) 10 -- .info -- 11 {"Version":"v1.1.0"} 12 -- go.mod -- 13 module patch.example.com/direct 14 15 require ( 16 patch.example.com/indirect v1.0.0 17 ) 18 -- direct.go -- 19 package direct 20 21 import _ "patch.example.com/indirect" 22