11 lines
252 B
Go
11 lines
252 B
Go
|
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)
|
||
|
}
|