AnP/Go/Interfaces/I18NInterface.go

8 lines
198 B
Go

package Interfaces
type I18NInterface interface {
GetRaw(texts any, _default string) string
Get(keys any, inputs any, _default string) string
// Add(inputs any, overwrite bool, header string)
}