8 lines
90 B
Go
8 lines
90 B
Go
package rpc
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrMethodNotFound = errors.New("method not found")
|
|
)
|