All checks were successful
Linting and tests / Linting (push) Successful in 5s
15 lines
422 B
Go
15 lines
422 B
Go
package core
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
// ServiceNameTranslations is a name for translations service.
|
|
const ServiceNameTranslations = "core/translations"
|
|
|
|
// ErrTranslationsIsInvalid appears when translations service implementation is invalid.
|
|
var ErrTranslationsIsInvalid = errors.New("translations service implementation is invalid")
|
|
|
|
// Translations is an interface for translations service.
|
|
type Translations interface{}
|