17 lines
223 B
Go
17 lines
223 B
Go
package pkg
|
|
|
|
import "git.deineagentur.com/DeineAgenturUG/gotext"
|
|
|
|
type SubTranslate struct {
|
|
L gotext.Locale
|
|
}
|
|
|
|
type Translate struct {
|
|
L gotext.Locale
|
|
S SubTranslate
|
|
}
|
|
|
|
func test() {
|
|
gotext.Get("inside sub package")
|
|
}
|