mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 16:10:59 +08:00
14 lines
224 B
Go
14 lines
224 B
Go
package service
|
|
|
|
import "github.com/leonelquinteros/gotext"
|
|
|
|
type EnvironmentService struct {
|
|
t *gotext.Locale
|
|
}
|
|
|
|
func NewEnvironmentService(t *gotext.Locale) *EnvironmentService {
|
|
return &EnvironmentService{
|
|
t: t,
|
|
}
|
|
}
|