9 lines
152 B
Go
9 lines
152 B
Go
package cast
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrDeviceNotFound = errors.New("device not found")
|
|
ErrUnknownDeviceType = errors.New("unknown device type")
|
|
)
|