Files
gotext/cli/xgotext/fixtures/pkg/pkg.go
2020-02-22 22:37:17 +01:00

17 lines
214 B
Go

package pkg
import "github.com/leonelquinteros/gotext"
type SubTranslate struct {
L gotext.Locale
}
type Translate struct {
L gotext.Locale
S SubTranslate
}
func test() {
gotext.Get("inside sub package")
}