Files
crawlab/core/interfaces/i18n_service.go
2024-06-14 15:42:50 +08:00

7 lines
122 B
Go

package interfaces
type I18nService interface {
AddTranslations(t []Translation)
GetTranslations() (t []Translation)
}