vegapokerbot/internal/handler/iface/base.go

28 lines
453 B
Go
Raw Normal View History

2024-05-09 17:42:42 +03:00
package iface
import (
"gitea.neur0tx.site/Neur0toxine/vegapokerbot/internal/locale"
)
type Base struct {
App App
2024-05-09 17:42:42 +03:00
UserID int64
ChatID int64
}
func NewBase(app App, userID int64, chatID int64) Base {
2024-05-09 17:42:42 +03:00
return Base{app, userID, chatID}
}
func (b Base) Localizer(lang string) locale.Localizer {
if len(lang) > 2 {
lang = lang[:2]
}
switch lang {
case "en", "ru":
return b.App.Localizer(lang)
default:
return b.App.Localizer("en")
}
}