niki/notification-app/messagebroker/redis.go

18 lines
326 B
Go

package messagebroker
import "git.gocasts.ir/ebhomengo/niki/notification-app/entity"
type redis struct {
}
func (r *redis) AddItem(notification entity.Notification) error {
return nil
}
func (r *redis) RemoveItem(notification entity.Notification) error {
return nil
}
func (r *redis) HealthCheck() error {
return nil
}