1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//! Main application which is responsible for operations on the terminal.

/// Application launcher.
pub mod launcher;

/// Renderer for the interface.
pub mod renderer;

/// Application state.
pub mod state;

/// Application mode.
pub mod mode;

/// Application prompt.
pub mod prompt;

/// Application commands.
pub mod command;

/// Application tabs.
pub mod tab;

/// Input and command handler.
pub mod handler;

/// Selection helper.
pub mod selection;

/// Style helper.
pub mod style;

/// Key bindings helper.
pub mod keys;

/// Application banner text.
pub mod banner;

/// Application splash screen.
pub mod splash;

/// Utilities.
pub mod util;