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