this-rs 0.0.9

Framework for building complex multi-entity REST and GraphQL APIs with many relationships
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Link management module
//!
//! This module provides link handlers and routing registry
//! that are completely agnostic to entity types.

pub mod handlers;
pub mod registry;

pub use handlers::{
    AppState, create_link, delete_link, handle_nested_path_get, handle_nested_path_post,
    list_available_links, list_links,
};
pub use registry::{LinkDirection, LinkRouteRegistry, RouteInfo};