Jimmy Yeh
Jimmy Yeh

Reputation: 21

Remove released module by official way

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

Answers (1)

kozmo
kozmo

Reputation: 4471

According official documentation you have to use retract directive.

Upvotes: 2

Related Questions