frm/lib.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
9//! frm - Frakking RabbitMQ version Manager
10//!
11//! A tool for managing multiple RabbitMQ installations from the generic UNIX packages.
12
13pub mod cli;
14pub mod commands;
15pub mod config;
16pub mod download;
17pub mod errors;
18pub mod paths;
19pub mod releases;
20pub mod shell;
21pub mod tanzu;
22pub mod timestamps;
23pub mod version;
24pub mod version_file;
25
26pub use errors::Error;
27
28pub type Result<T> = std::result::Result<T, Error>;