2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 16:10:59 +08:00
Files
panel/internal/service/environment.go
2026-01-04 03:31:34 +08:00

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,
}
}