bunker/client/internal/services/core/translations.go
Stanislav N. aka pztrn e3b9c9ae40
Some checks failed
Linting and tests / Linting (push) Failing after 5s
Linting and tests / Tests (push) Failing after 4s
The very basic client app, not adapted for mobiles.
2025-09-10 19:34:49 +05:00

19 lines
769 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package core
import (
"errors"
)
// ServiceNameTranslations это название для сервиса работы с переводами.
const ServiceNameTranslations = "core/translations"
var (
// ErrTranslations говорит о возникновении ошибки в сервисе работы с настройками.
ErrTranslations = errors.New("translations core service")
// ErrTranslationsIsInvalid говорит о неверной имплементации сервиса работы с переводами.
ErrTranslationsIsInvalid = errors.New("translations service implementation is invalid")
)
// Translations это интерфейс для сервиса работы с переводами.
type Translations interface{}