enumer icon indicating copy to clipboard operation
enumer copied to clipboard

go mod tidy will remove the reference to github.com/dmarkham/enumer from go.mod

Open madkins23 opened this issue 1 year ago • 1 comments

This can be prevented by adding a tools.go file:

//go:build tools

package tools

import (
	// Protect this entry in go.mod from being removed by go mod tidy.
	_ "github.com/dmarkham/enumer"
)

Should probably go into README.md.

madkins23 avatar Jun 25 '23 00:06 madkins23