| 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 |