diff --git a/codegenerator/templates/rust_cli/impl.rs.j2 b/codegenerator/templates/rust_cli/impl.rs.j2 index 84954a8..2bb82db 100644 --- a/codegenerator/templates/rust_cli/impl.rs.j2 +++ b/codegenerator/templates/rust_cli/impl.rs.j2 @@ -266,6 +266,8 @@ impl {{ target_class_name }}Command { {%- endif %} {%- endif %} {#- specialities #} + // Show command specific hints + op.show_command_hint(); Ok(()) } } diff --git a/codegenerator/tests/unit/test_rust_cli.py b/codegenerator/tests/unit/test_rust_cli.py index a8923be..e178f45 100644 --- a/codegenerator/tests/unit/test_rust_cli.py +++ b/codegenerator/tests/unit/test_rust_cli.py @@ -113,6 +113,8 @@ impl fooCommand { let data = ep.query_async(client).await?; op.output_single::(data)?; + // Show command specific hints + op.show_command_hint(); Ok(()) } }