Golint
This commit is contained in:
parent
a880fdea82
commit
efb0cc13fa
41 changed files with 569 additions and 386 deletions
|
@ -3,6 +3,8 @@ package errors
|
|||
import "errors"
|
||||
|
||||
var (
|
||||
CharacteristicNotFound = errors.New("Characteristic not found")
|
||||
CharacteristicNotUpdated = errors.New("Characteristic not updated")
|
||||
// ErrCharacteristicNotFound when not found.
|
||||
ErrCharacteristicNotFound = errors.New("Characteristic not found")
|
||||
// ErrCharacteristicNotUpdated when not updated.
|
||||
ErrCharacteristicNotUpdated = errors.New("Characteristic not updated")
|
||||
)
|
||||
|
|
Reference in a new issue