拆分系统配置 Service 文件职责

This commit is contained in:
yml2213
2026-06-10 15:10:13 +08:00
parent 5ecb1e1469
commit ca50b103ec
5 changed files with 379 additions and 359 deletions
@@ -0,0 +1,15 @@
package systemconfig
import (
"context"
)
func (s *Service) Update(ctx context.Context, actorID uint64, key string, req UpdateRequest, meta AuditMeta) (*ConfigDTO, error) {
if s.repo == nil {
return nil, ErrDependencyUnavailable
}
if key == "" || req.Value == "" {
return nil, ErrInvalidConfig
}
return s.repo.Update(ctx, actorID, key, req, meta)
}