kra-new/internal/service/system/system.go

20 lines
465 B
Go

package system
import (
"context"
"kra/internal/biz/system"
)
type SystemConfigService struct {
uc *system.SystemConfigUsecase
settings system.RuntimeSettings
}
func NewSystemConfigService(uc *system.SystemConfigUsecase, settings system.RuntimeSettings) *SystemConfigService {
return &SystemConfigService{uc: uc, settings: settings}
}
func (s *SystemConfigService) IsInitialized(ctx context.Context) (bool, error) {
return s.uc.IsInitialized(ctx)
}