add basic rayhunter_options endpoint

This commit is contained in:
Brad Warren
2026-03-13 11:10:55 -07:00
committed by Will Greenberg
parent 17a9dfe0ff
commit 30c4cb0e0c
5 changed files with 72 additions and 1 deletions
+3 -1
View File
@@ -30,9 +30,11 @@ use crate::output::eprintln;
static CONFIG_TOML: &str = include_str!("../../dist/config.toml.in");
static RAYHUNTER_DAEMON_INIT: &str = include_str!("../../dist/scripts/rayhunter_daemon");
// We mark this as public so it can be used by installer-gui to programmatically introspect the
// installer's options.
#[derive(Parser, Debug)]
#[command(version, about)]
struct Args {
pub struct Args {
#[command(subcommand)]
command: Command,
}