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

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