Reputation: 21
I have a Go module which was published (using go modules) and I want to remove it because it was a "bad" release.
So how can I remove my released module use official way?
Upvotes: 1
Views: 76
Reputation: 4471
According official documentation you have to use retract directive.
retract
Upvotes: 2