app-cloudep-notification-se.../pkg/domain/usecase/template.go

11 lines
286 B
Go

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