package depot import "errors" var ( ErrNotFound = errors.New("object not found") ErrInvalidInput = errors.New("invalid input") )