1 2 3 4 5 6 7
package utils import "strings" func Quote(s string) string { return strings.Replace(s, `"`, `\"`, -1) }