Add Header of some form

This commit is contained in:
2024-08-09 16:52:56 +02:00
parent 3a4839cd24
commit 9c6ac0ef51
7 changed files with 43 additions and 77 deletions

4
app.go
View File

@@ -25,3 +25,7 @@ func (a *App) startup(ctx context.Context) {
func (a *App) Greet(name string) string {
return fmt.Sprintf("Hello %s, It's show time!", name)
}
func (a *App) Foo() string {
return "bar"
}