This commit is contained in:
2026-03-05 03:51:03 +01:00
parent 08c1d0c605
commit a93c0bf89c
35 changed files with 1606 additions and 0 deletions

11
crete/src/lib.rs Normal file
View File

@@ -0,0 +1,11 @@
pub mod cluster;
pub mod node;
pub mod patch;
use std::path::PathBuf;
use repo_path_lib::repo_dir;
fn base_dir() -> PathBuf {
repo_dir().join("talos")
}