add project first skeleton
This commit is contained in:
6
internal/app/app.go
Normal file
6
internal/app/app.go
Normal 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
9
internal/app/errors.go
Normal file
@@ -0,0 +1,9 @@
|
||||
package app
|
||||
|
||||
import (
|
||||
"errors"
|
||||
)
|
||||
|
||||
var (
|
||||
ErrNilPointerWarn = errors.New("nil pointer dereference warning")
|
||||
)
|
||||
Reference in New Issue
Block a user