package cast import "errors" var ( ErrDeviceNotFound = errors.New("device not found") ErrUnknownDeviceType = errors.New("unknown device type") )