Add simple app

Signed-off-by: Jan Tytgat <jan.tytgat@corelayer.eu>
This commit is contained in:
Jan Tytgat
2025-04-04 21:16:33 +02:00
parent 9c91a35611
commit 26e0fef0c6
2 changed files with 16 additions and 0 deletions

13
pkg/app/app.go Normal file
View File

@ -0,0 +1,13 @@
package app
import "fmt"
func New() *App {
return &App{}
}
type App struct{}
func (a *App) Execute() {
fmt.Println("Hello World")
}