Versions in this module Expand all Collapse all v0 v0.2.0 Dec 1, 2025 v0.1.0 Nov 28, 2025 Changes in this version + var ErrExists = errors.New("rendezvous record already exists") + var ErrNotFound = errors.New("rendezvous record not found") + type Record struct + Address string + CreatedAt time.Time + ExpiresAt time.Time + Id uint64 + Key string + func (r *Record) Clone() Record + func (r *Record) CopyTo(dst *Record) + func (r *Record) Validate() error + type Store interface + Delete func(ctx context.Context, key, address string) error + ExtendExpiry func(ctx context.Context, key, address string, expiry time.Time) error + Get func(ctx context.Context, key string) (*Record, error) + Put func(ctx context.Context, record *Record) error