Skip to main content

frm/common/
cli_tools.rs

1// Copyright (c) 2025-2026 Michael S. Klishin and Contributors
2//
3// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4// https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
5// <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
6// option. This file may not be copied, modified, or distributed
7// except according to those terms.
8
9pub const RABBITMQ_SERVER: &str = "rabbitmq-server";
10pub const RABBITMQCTL: &str = "rabbitmqctl";
11pub const LOG_FILE_PREFIX: &str = "rabbit@";
12
13pub const RABBITMQ_CLI_TOOLS: &[&str] = &[
14    RABBITMQCTL,
15    "rabbitmq-diagnostics",
16    "rabbitmq-plugins",
17    "rabbitmq-queues",
18    "rabbitmq-streams",
19    "rabbitmq-upgrade",
20];