1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
//! Command handler modules for IPFRS CLI
//!
//! This module organizes all command implementations into logical groups:
//!
//! - [`daemon`] - Daemon management (start, stop, status, etc.)
//! - [`file`](mod@file) - File operations (add, get, cat, ls)
//! - [`block`] - Raw block operations
//! - [`dag`] - DAG node operations
//! - [`pin`] - Pin management
//! - [`repo`] - Repository management (gc, stat, fsck)
//! - [`network`] - Network operations (swarm, dht, bootstrap)
//! - [`tensor`] - Tensor operations
//! - [`logic`] - Logic programming operations
//! - [`semantic`] - Semantic search operations
//! - [`query`] - Hybrid query (semantic + logic)
//! - [`model`] - Model management
//! - [`gradient`] - Gradient operations for federated learning
//! - [`stats`] - Statistics display
//! - [`gateway`] - HTTP gateway
//! - [`config`] - Configuration management
// Common utilities shared across command modules
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
// ipld module is NOT glob-re-exported because its symbols would conflict with
// other modules. Callers use the full path: crate::commands::ipld::*