We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df4aa0b commit 102718aCopy full SHA for 102718a
hacker/src/lib.rs
@@ -2,11 +2,14 @@ mod commands;
2
mod game;
3
mod help;
4
mod utils;
5
+
6
pub use commands::{handle_unpack, handle_system, handle_run};
7
pub use game::play_game;
8
pub use help::display_ascii;
9
pub use utils::{handle_update, run_command_with_spinner};
10
11
use clap::Subcommand;
12
13
#[derive(Subcommand)]
14
pub enum UnpackCommands {
15
/// Install add-ons (Wine, BoxBuddy, Winezgui, Gearlever)
@@ -28,11 +31,13 @@ pub enum UnpackCommands {
28
31
/// Install gamescope for hacker mode
29
32
HackerMode,
30
33
}
34
35
36
pub enum SystemCommands {
37
/// Show system logs
38
Logs,
39
40
41
42
pub enum RunCommands {
43
/// Update the system
0 commit comments