this/links/
mod.rs

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