package nucleus import "fmt" type ErrNilClient struct { } func (e *ErrNilClient)Error() string { return fmt.Sprintf("client cannot be nil") }