//go:generate minimock -i gitlab.hidden.com/platform/realtime-config-go.Client -o realtime_config_client.go -n ClientMock -p mocks
fails with
minimock: failed to generate mock: template: header:14:147: executing "header" at <"MockName">: wrong type for value; expected language.Tag; got string
I think that the reason is this change
old (strings):
func Title(s string) string
new (cases):
func Title(t language.Tag, opts ...Option) Caser