This commit is contained in:
2026-03-02 05:05:33 +01:00
parent 08c1d0c605
commit 6cc6fe6fc7
31 changed files with 1240 additions and 0 deletions

7
crete/src/main.rs Normal file
View File

@@ -0,0 +1,7 @@
use crete::cluster::Cluster;
fn main() {
let cluster = Cluster::get("testing");
println!("{:#?}", cluster.nodes());
}