orbit-tui 1.2.0

Terminal UI for AWS - navigate, observe, and manage AWS resources
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod fetcher;
mod registry;

// Data-driven dispatch infrastructure
pub mod dispatch;
pub mod field_mapper;
pub mod handlers;
pub mod path_extractor;
pub mod protocol;

pub use dispatch::{
    describe_resource, execute_action, execute_action_with_result, format_log_timestamp, invoke_sdk,
};
pub use fetcher::{extract_json_value, fetch_resources_paginated, ResourceFilter};
pub use registry::*;