Add runtime ErrNotFound

This commit is contained in:
Ben Toogood 2020-05-19 09:28:00 +01:00
parent 5efb386224
commit 14155c7e02

View File

@ -12,6 +12,7 @@ var (
// DefaultName is default runtime service name
DefaultName = "go.micro.runtime"
ErrNotFound = errors.New("not found")
ErrAlreadyExists = errors.New("already exists")
)