我想在 Go struct 标签中转义反引号。例如在下面的代码中:
type User struct { email string `validate: "regexp=`"` password string `validate: "min=8"` }
go
go ×1