Errors package
This commit is contained in:
parent
0eec85ed08
commit
a880fdea82
24 changed files with 215 additions and 169 deletions
8
errors/characteristics.go
Normal file
8
errors/characteristics.go
Normal file
|
@ -0,0 +1,8 @@
|
|||
package errors
|
||||
|
||||
import "errors"
|
||||
|
||||
var (
|
||||
CharacteristicNotFound = errors.New("Characteristic not found")
|
||||
CharacteristicNotUpdated = errors.New("Characteristic not updated")
|
||||
)
|
Reference in a new issue