2021-03-22 00:00:09 +01:00
|
|
|
//! Crate containing rpc related functions and types used in Garage
|
|
|
|
|
2020-04-24 10:10:01 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate log;
|
|
|
|
|
2021-03-22 00:00:09 +01:00
|
|
|
mod consul;
|
2021-02-21 13:11:10 +01:00
|
|
|
|
2021-11-09 12:24:04 +01:00
|
|
|
pub mod layout;
|
2021-02-23 18:46:25 +01:00
|
|
|
pub mod ring;
|
2021-10-14 11:50:12 +02:00
|
|
|
pub mod system;
|
2021-02-21 13:11:10 +01:00
|
|
|
|
2021-10-14 11:50:12 +02:00
|
|
|
pub mod rpc_helper;
|
|
|
|
|
|
|
|
pub use rpc_helper::*;
|