go-log/errors.go

12 lines
91 B
Go
Raw Normal View History

package flog
import (
"errors"
)
var (
errNilReceiver = errors.New("Nil Receiver")
)