wip: Started work on k3d crate

This commit is contained in:
2025-04-17 13:04:06 -04:00
parent 3f6f1fa0d4
commit 847d84b46f
7 changed files with 262 additions and 11 deletions

12
k3d/src/lib.rs Normal file
View File

@@ -0,0 +1,12 @@
use std::path::PathBuf;
pub struct K3d {
}
impl K3d {
pub async fn download_latest_release(&self) -> Result<PathBuf, String> {
}
}