2025-03-01 15:24:56 +00:00
|
|
|
package usecase
|
|
|
|
|
|
|
|
import (
|
2025-03-08 03:08:41 +00:00
|
|
|
"code.30cm.net/digimon/app-cloudep-notification-service/pkg/domain/template"
|
2025-03-01 15:24:56 +00:00
|
|
|
"context"
|
|
|
|
)
|
|
|
|
|
|
|
|
type TemplateUseCase interface {
|
|
|
|
GetEmailTemplateByStatic(ctx context.Context, language template.Language, templateID template.Type) (template.EmailTemplate, error)
|
|
|
|
}
|