返回 CodeWhale
mod.rs
根目录 / crates / tui / src / tui / hotbar / mod.rs
1 //! Hotbar action registry foundation.
2 //!
3 //! Config, sidebar rendering, and key dispatch consume this action surface and
4 //! the built-in actions defined here.
5
6 pub mod actions;
7 pub mod setup;
8
9 pub use actions::HotbarActionRegistry;
10
10 lines RUST