package usecase import ( "app-cloudep-notification-service/pkg/domain/template" "context" ) type TemplateUseCase interface { GetEmailTemplateByStatic(ctx context.Context, language template.Language, templateID template.Type) (template.EmailTemplate, error) }