12 lines
91 B
Go
12 lines
91 B
Go
|
package flog
|
||
|
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
)
|
||
|
|
||
|
|
||
|
var (
|
||
|
errNilReceiver = errors.New("Nil Receiver")
|
||
|
)
|