15 lines
462 B
Go
15 lines
462 B
Go
package daemon
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
// ErrCannotCreateStorage is an error when no device storage can be created
|
|
ErrCannotCreateStorage = errors.New("cannot create device storage")
|
|
// ErrCannotCreateDeviceUID is an error when no device UID can be created
|
|
ErrCannotCreateDeviceUID = errors.New("cannot create device UID")
|
|
// ErrInvalidTemplate is an error when no driver can execute the template
|
|
ErrInvalidTemplate = errors.New("invalid template")
|
|
)
|