package backend import ( "fmt" ) func (a *App) Greet(name string) string { return fmt.Sprintf("Hello %s, It's show time!", name) }