marketsurge-agent 0.3.0

Unofficial agent-oriented CLI for MarketSurge data
1
2
3
4
5
6
7
8
9
10
11
//! Shared utilities used across command handlers.

/// Browser auth session bootstrapping.
pub mod auth;
/// Shared command execution helpers.
pub mod command;
/// Shared tabular response helpers.
pub(crate) mod rows;
/// Test helpers shared across command modules.
#[cfg(test)]
pub(crate) mod test_support;