cosmic-cinder 0.1.13

Rust terminal UI for Phoenix perpetuals on Solana
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Phoenix TUI: terminal trading client for Phoenix perpetuals.

pub mod app;
pub mod tui;

pub use app::run;

/// Backwards-compatible module name for older callers. New code should use
/// [`tui`], which matches the on-disk layout.
pub mod spline {
    pub use crate::tui::*;
}