Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type PendingNotificationRepository ¶
type PendingNotificationRepository interface { CreatePendingNotification(ctx context.Context, arg db.CreatePendingNotificationParams) (db.PendingNotification, error) DeletePendingNotification(ctx context.Context, id int64) error DeletePendingNotificationByInvoiceRequest(ctx context.Context, invoiceRequestID sql.NullInt64) error DeletePendingNotifications(ctx context.Context, ids []int64) error ListPendingNotifications(ctx context.Context, nodeID int64) ([]db.PendingNotification, error) UpdatePendingNotifications(ctx context.Context, arg db.UpdatePendingNotificationsParams) error UpdatePendingNotificationsByUser(ctx context.Context, arg db.UpdatePendingNotificationsByUserParams) error }
func NewRepository ¶
func NewRepository(repositoryService *db.RepositoryService) PendingNotificationRepository
Click to show internal directories.
Click to hide internal directories.