Skip to main content

cinder/
lib.rs

1//! Phoenix TUI: terminal trading client for Phoenix perpetuals.
2
3pub mod app;
4pub mod tui;
5
6pub use app::run;
7
8/// Backwards-compatible module name for older callers. New code should use
9/// [`tui`], which matches the on-disk layout.
10pub mod spline {
11    pub use crate::tui::*;
12}