edge/pkg/module/rpc/error.go
William Petit ad49c1718c
All checks were successful
arcad/edge/pipeline/head This commit looks good
arcad/edge/pipeline/pr-master This commit looks good
feat: rewrite bus to prevent deadlocks
2023-11-30 15:02:36 +01:00

8 lines
90 B
Go

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