package localization import "tercul/internal/domain/localization" // LocalizationCommands contains the command handlers for the localization aggregate. type LocalizationCommands struct { repo localization.LocalizationRepository } // NewLocalizationCommands creates a new LocalizationCommands handler. func NewLocalizationCommands(repo localization.LocalizationRepository) *LocalizationCommands { return &LocalizationCommands{repo: repo} }