Compare commits

...

2 Commits

Author SHA1 Message Date
26e0fef0c6 Add simple app
Signed-off-by: Jan Tytgat <jan.tytgat@corelayer.eu>
2025-04-04 21:16:33 +02:00
9c91a35611 Update gitignore
Signed-off-by: Jan Tytgat <jan.tytgat@corelayer.eu>
2025-04-04 21:15:43 +02:00
3 changed files with 19 additions and 0 deletions

3
.gitignore vendored
View File

@ -25,3 +25,6 @@ go.work.sum
# env file # env file
.env .env
.idea

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module git.flexabyte.io/flexabyte/go-kit
go 1.24.1

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")
}