niki/domain/notification/service/send.go

8 lines
156 B
Go

package service
import "git.gocasts.ir/ebhomengo/niki/domain/notification/entity"
type sender interface {
Send(notification entity.Notification) error
}