//! GS1 Digital Link link-type negotiation.
//!
//! When a resolver receives a Digital Link request, the client can specify
//! which representation it wants via:
//! - Query parameter: `?linkType=gs1:epil` (product information page)
//! - HTTP Accept header: `application/json`, `application/ld+json`, etc.
//!
//! The ESPR mandates that DPP data is resolvable through GS1 Digital Link.
//! Different consumers need different representations:
//! - A consumer scanning a QR code wants an HTML product page.
//! - A machine client wants JSON-LD or raw DPP JSON.
//! - A market surveillance authority wants the full signed DPP payload.
//!
//! ## Module layout
//!
//! - `vocabulary` — [`Gs1LinkType`], the GS1 Web Vocabulary link types.
//! - `media_type` — [`DppMediaType`] for content negotiation.
//! - `request` — [`ResolutionRequest`] + HTTP `Accept`-header parsing.
//! - [`negotiate`](negotiate()) — [`LinkDescriptor`] + the negotiation algorithm.
/// Re-export the canonical access vocabulary from dpp-domain.
pub use ;
pub use DppMediaType;
pub use ;
pub use ResolutionRequest;
pub use Gs1LinkType;