add project first skeleton

This commit is contained in:
2025-11-28 20:12:45 +02:00
parent 9d8918558d
commit f1ed3c977a
8 changed files with 109 additions and 8 deletions

6
internal/app/app.go Normal file
View File

@@ -0,0 +1,6 @@
package app
type App struct {
// Application state and configurations can be added here
}

9
internal/app/errors.go Normal file
View File

@@ -0,0 +1,9 @@
package app
import (
"errors"
)
var (
ErrNilPointerWarn = errors.New("nil pointer dereference warning")
)