niki/notification-app/service/send.go

8 lines
153 B
Go

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