Versions in this module Expand all Collapse all v1 v1.0.0 May 22, 2026 Changes in this version + type LinkRepository struct + func NewLinkRepository(ctx context.Context, tableName string, endpoint string) *LinkRepository + func (d *LinkRepository) All(ctx context.Context) ([]domain.Link, error) + func (d *LinkRepository) Create(ctx context.Context, link domain.Link) error + func (d *LinkRepository) Delete(ctx context.Context, id string) error + func (d *LinkRepository) Get(ctx context.Context, id string) (domain.Link, error)