1mod=example.com/tidy 2base=v0.0.1 3success=false 4-- want -- 5# example.com/tidy/subdir 6## compatible changes 7package added 8 9# diagnostics 10go.mod: the following requirements are needed 11 example.com/basic@v1.1.2 12Run 'go mod tidy' to add missing requirements. 13 14# summary 15Suggested version: v0.1.0 16-- go.mod -- 17module example.com/tidy 18 19go 1.12 20-- tidy.go -- 21package tidy 22-- subdir/tidy.go -- 23package subpkg 24 25import _ "example.com/basic/a"