Refactoring update handlers.

Fixes #16.
This commit is contained in:
Matthew Dillon 2015-10-13 12:38:18 -07:00
parent 7c253d7aa5
commit b87077a1df
12 changed files with 79 additions and 35 deletions

View file

@ -5,4 +5,6 @@ import "errors"
var (
// ErrMeasurementNotFound when not found.
ErrMeasurementNotFound = errors.New("Measurement not found")
// ErrMeasurementNotUpdate when not updated.
ErrMeasurementNotUpdated = errors.New("Measurement not updated")
)