backend/pkg/notification/domain/usecase/template.go

11 lines
252 B
Go
Raw Permalink Normal View History

2025-10-02 16:16:33 +00:00
package usecase
import (
"backend/pkg/notification/domain/template"
"context"
)
type TemplateUseCase interface {
GetEmailTemplateByStatic(ctx context.Context, language template.Language, templateID template.Type) (template.EmailTemplate, error)
}