Yimaru-BackEnd/internal/services/notification/errors.go
Yared Yemane 685e1d104f feat: add GET notification by ID endpoint
Expose read-only in-app notification details at GET /notifications/:id with owner scoping and list-all admin access.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-05 05:31:46 -07:00

9 lines
192 B
Go

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