feat: add dev-packages

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2025-01-05 21:33:11 +01:00
parent 451270f64b
commit dee3421313
9 changed files with 828 additions and 5 deletions

21
dev-packages/src/lib.rs Normal file
View File

@@ -0,0 +1,21 @@
use bindings::exports::component::churn_tasks::task::Guest;
#[allow(warnings)]
mod bindings;
struct Component;
impl Guest for Component {
fn id() -> String {
"clank/dev-packages".into()
}
fn should_run() -> bool {
true
}
fn execute() {
println!("running dev-packages installation");
}
}
bindings::export!(Component with_types_in bindings);