This commit is contained in:
2026-04-06 01:23:10 +09:00
commit 09c78206a8
12 changed files with 439 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package services
type ServicesStore struct {
Config *ConfigService
}
func NewServicesStore() (*ServicesStore, error) {
cfg, err := NewConfigService()
if err != nil {
return nil, err
}
return &ServicesStore{Config: cfg}, nil
}