Files
go-kit/pkg/app/app.go
Jan Tytgat 26e0fef0c6 Add simple app
Signed-off-by: Jan Tytgat <jan.tytgat@corelayer.eu>
2025-04-04 21:16:33 +02:00

14 lines
138 B
Go

package app
import "fmt"
func New() *App {
return &App{}
}
type App struct{}
func (a *App) Execute() {
fmt.Println("Hello World")
}