necronux_cli_app 0.3.0-rc.2

Provides the CLI implementation for Necronux.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// ==----------------------------------------------------------------== //
// SPDX-FileCopyrightText: © 2024-2025 Nayan Patil <nayantsg@proton.me>
//
// SPDX-License-Identifier: GPL-3.0-or-later
// ==----------------------------------------------------------------== //

use clap::Args;

#[derive(Args, Debug)]
pub struct SystemCommand {
    // TODO: turn this into a subcommand and handle it
    /*
    /// See list of available system utilities
    #[arg(short = 'l', long, exclusive = true)]
    pub list_utils: bool,
    */
}