10 lines
110 B
Go
10 lines
110 B
Go
package app
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrNilPointerWarn = errors.New("nil pointer dereference warning")
|
|
)
|