Skip to content

Commit ca799f8

Browse files
committed
Add dead code allowance for ListCommand and RunCommand structs
1 parent 911f310 commit ca799f8

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/commands/list.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ use crate::cliargs::CliArgs;
55
use crate::commands::Command;
66
use crate::registry::list_available_nodes;
77

8+
#[allow(dead_code)]
89
pub struct ListCommand;
910

1011
#[async_trait::async_trait]

src/commands/run.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ use crate::cliargs::{CliArgs, Commands};
55
use crate::commands::Command;
66
use crate::runner::run_app_internal;
77

8+
#[allow(dead_code)]
89
pub struct RunCommand;
910

1011
#[async_trait::async_trait]

0 commit comments

Comments
 (0)