wip: FailoverTopology implementation for PostgreSQL on the way!

This commit is contained in:
2025-12-08 23:11:43 -05:00
parent 8103932f23
commit 357ca93d90
8 changed files with 475 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
pub mod id;
pub mod net;
pub mod switch;
pub mod storage;

View File

@@ -0,0 +1,6 @@
use serde::{Deserialize, Serialize};
#[derive(Copy, Clone, PartialEq, Eq, Hash, Serialize, Deserialize, PartialOrd, Ord, Debug)]
pub struct StorageSize {
size_bytes: u64,
}