edge/pkg/module/rpc/error.go

8 lines
90 B
Go

package rpc
import "errors"
var (
ErrMethodNotFound = errors.New("method not found")
)