func stringCut()

in pkg/mock/handlers/handlers.go [189:194]


func stringCut(s, sep string) (before, after string, found bool) {
	if i := strings.Index(s, sep); i > -1 {
		return s[:i], s[i+len(sep):], true
	}
	return s, "", false
}