forked from ebhomengo/niki
18 lines
326 B
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
|
|
}
|