1-- go.mod -- 2module example.com/retractdep/v2 3 4go 1.12 5 6retract v2.0.0 7-- a.go -- 8package a 9 10const A = "a"
View as plain text