package util import "fmt" // Echo func func Echo(msg string) string { return fmt.Sprintf("ECHO: %s", msg) }