8 lines
177 B
Go
8 lines
177 B
Go
package errors
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
CharacteristicNotFound = errors.New("Characteristic not found")
|
|
CharacteristicNotUpdated = errors.New("Characteristic not updated")
|
|
)
|