aqi/ws/context_i18n.go
2024-06-18 18:09:39 +08:00

10 lines
197 B
Go

package ws
func (c *Context) i18nLoad(code int, msg string) string {
return languageInit(c).load(code, msg)
}
func (c *Context) i18nSet(code int, msg string) {
languageInit(c).set(code, msg)
}