feat(homelab)!: setup pihole entry generation, add treeminer to minecraft-main

This commit is contained in:
2026-01-03 23:45:02 -08:00
parent 4f79df9bf2
commit 7b76ffd34f
15 changed files with 1942 additions and 49 deletions

View File

@@ -10,6 +10,10 @@ pub enum Error {
IO(#[from] std::io::Error),
#[error("command return non 0 exit code: {0}")]
ExitCode(i32),
#[error("HTTP error: {0}")]
Http(#[from] reqwest::Error),
#[error("Pi-hole API error: {0}")]
PiHole(String),
}
pub type Result<T> = std::result::Result<T, Error>;