diff options
| author | Naz <ndpm13@ch-naseem.com> | 2025-08-07 13:48:53 +0100 |
|---|---|---|
| committer | Naz <ndpm13@ch-naseem.com> | 2025-08-07 13:48:53 +0100 |
| commit | c5157ee81b64f20c12ac11b7eb79e07bd3af1469 (patch) | |
| tree | ce7e99354c2b3a33914f1ebe9da9bb77b8908888 /src/args.rs | |
| parent | bf42f2e19d8bf710d149c6c6f7301fae2310ba41 (diff) | |
✨feat: add scaffolding for the github functionality
Diffstat (limited to 'src/args.rs')
| -rw-r--r-- | src/args.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/args.rs b/src/args.rs index 39354f6..a7aa5c6 100644 --- a/src/args.rs +++ b/src/args.rs @@ -34,6 +34,10 @@ pub struct InstallArgs { /// Name of the executable #[arg(long)] pub executable: Option<String>, + + /// Use --from as repository slug to fetch from GitHub + #[arg(long, default_value_t = false)] + pub github: bool, } #[derive(Debug, Args)] |
