Skip to content

Commit b071950

Browse files
Add one more doc link to --help
1 parent e062df6 commit b071950

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/cli.rs

+2
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,15 @@ pub fn parser(pre_flight_settings: PreFlightSettings) -> Command {
3030
r#"
3131
<bold><blue>Documentation and Community Resources</blue></bold>
3232
33+
rabbitmqadmin docs: {}
3334
RabbitMQ docs: {}
3435
GitHub Discussions: {}
3536
Discord server: {}
3637
3738
<bold><blue>Contribute</blue></bold>
3839
3940
On GitHub: {}"#,
41+
RABBITMQADMIN_DOC_GUIDE_URL,
4042
RABBITMQ_DOC_GUIDES_URL,
4143
GITHUB_DISCUSSIONS_URL,
4244
DISCORD_SERVER_INVITATION_URL,

src/static_urls.rs

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
#![allow(dead_code)]
1616
#![allow(unused_variables)]
1717

18+
pub(crate) const RABBITMQADMIN_DOC_GUIDE_URL: &str = "https://www.rabbitmq.com/docs/management-cli";
1819
pub(crate) const RABBITMQ_DOC_GUIDES_URL: &str = "https://rabbitmq.com/docs/";
1920
pub(crate) const GITHUB_DISCUSSIONS_URL: &str =
2021
"https://github.com/rabbitmq/rabbitmq-server/discussions";

0 commit comments

Comments
 (0)