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
//! htoprs entry point.
//!
//! Thin binary wrapper: htoprs routes `-h`/`-V` to its branded help/version
//! screens (an intentional divergence from htop's plain printers), then delegates
//! to the ported [`htoprs::ported::commandline::CommandLine_run`] — the single
//! startup path shared with the faithful [`htoprs::ported::htop::main`], which
//! assembles the runtime object graph and drives [`ScreenManager_run`].
//!
//! [`ScreenManager_run`]: htoprs::ported::screenmanager::ScreenManager_run
use CommandLine_run;