package utils import "strings" func Quote(s string) string { return strings.Replace(s, `"`, `\"`, -1) }