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::{
10    AppState, create_link, delete_link, handle_nested_path_get, handle_nested_path_post,
11    list_available_links, list_links,
12};
13pub use registry::{LinkDirection, LinkRouteRegistry, RouteInfo};