mirror of
https://github.com/mainflux/mainflux.git
synced 2025-05-09 19:29:29 +08:00

* Update dependencies Signed-off-by: dusanb94 <dusan.borovcanin@mainflux.com> * Update dependencies Fix Timescale Reader bug. Signed-off-by: dusanb94 <dusan.borovcanin@mainflux.com> * Revert influxdb-reader changes Signed-off-by: dusanb94 <dusan.borovcanin@mainflux.com> * Update dependencies to latest supported versions Signed-off-by: dusanb94 <dusan.borovcanin@mainflux.com> --------- Signed-off-by: dusanb94 <dusan.borovcanin@mainflux.com> Co-authored-by: Drasko DRASKOVIC <drasko.draskovic@gmail.com>
12 lines
425 B
Go
12 lines
425 B
Go
package validator
|
|
|
|
import ut "github.com/go-playground/universal-translator"
|
|
|
|
// TranslationFunc is the function type used to register or override
|
|
// custom translations
|
|
type TranslationFunc func(ut ut.Translator, fe FieldError) string
|
|
|
|
// RegisterTranslationsFunc allows for registering of translations
|
|
// for a 'ut.Translator' for use within the 'TranslationFunc'
|
|
type RegisterTranslationsFunc func(ut ut.Translator) error
|