package notificationservice import "errors" var ( ErrNotificationNotFound = errors.New("notification not found") ErrNotificationForbidden = errors.New("notification access denied") )