From 3f80f3acd90c9782420cc0d33fcf77035e522b15 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Wed, 11 Feb 2026 10:15:55 +0900 Subject: enable workspace --- src/commands/repository.rs | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 src/commands/repository.rs (limited to 'src/commands/repository.rs') diff --git a/src/commands/repository.rs b/src/commands/repository.rs deleted file mode 100644 index 8646c06..0000000 --- a/src/commands/repository.rs +++ /dev/null @@ -1,40 +0,0 @@ -use clap::Args; - -#[derive(Args)] -pub struct RepositoryArgs { - /// Action (list, add, remove, set-url, get-url, enable, disable) - pub action: Option, - - /// Repository name - pub name: Option, - - /// Argument 1 (URL or type depending on action) - pub arg1: Option, - - /// Argument 2 - pub arg2: Option, - - /// Apply to the global config file - #[arg(short, long)] - pub global: bool, - - /// Use a specific config file - #[arg(short, long)] - pub file: Option, - - /// Append the repository instead of prepending it - #[arg(long)] - pub append: bool, - - /// Add before a specific repository - #[arg(long)] - pub before: Option, - - /// Add after a specific repository - #[arg(long)] - pub after: Option, -} - -pub fn execute(_args: &RepositoryArgs) { - todo!() -} -- cgit v1.3.1