diff --git a/rust-connector-sdk/src/default_main.rs b/rust-connector-sdk/src/default_main.rs index 1b67e056..a226c492 100644 --- a/rust-connector-sdk/src/default_main.rs +++ b/rust-connector-sdk/src/default_main.rs @@ -567,7 +567,7 @@ mod ndc_test_commands { } } - pub async fn test( + pub(super) async fn test( setup: Setup, command: super::TestCommand, ) -> Result<(), Box> { @@ -592,7 +592,7 @@ mod ndc_test_commands { Ok(()) } - pub async fn replay( + pub(super) async fn replay( setup: Setup, command: super::ReplayCommand, ) -> Result<(), Box> { @@ -612,7 +612,7 @@ mod ndc_test_commands { Ok(()) } - pub async fn bench( + pub(super) async fn bench( setup: Setup, command: BenchCommand, ) -> Result<(), Box> {