package gomod import "text/template" type goGetHtmlTemplateCtx struct { ModulePath string ProxyBase string } var goGetHtmlTemplate = template.Must(template.New("tpl").Parse(` go get {{.ModulePath}} `))