this/links/
mod.rs

1//! Link management module
2//!
3//! This module provides the link service implementation and routing registry
4//! that are completely agnostic to entity types.
5
6pub mod handlers;
7pub mod registry;
8pub mod service;
9
10pub use handlers::{create_link, delete_link, list_available_links, list_links, AppState};
11pub use registry::{LinkDirection, LinkRouteRegistry, RouteInfo};
12pub use service::InMemoryLinkService;