Files
public/Tools/quickly/backend/greet.go

10 lines
135 B
Go

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