churn-v2/crates/churn/wit/world.wit
kjuulh db4cc98643
All checks were successful
continuous-integration/drone/push Build is passing
feat: update with web assembly components
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-12-01 22:21:17 +01:00

12 lines
170 B
Plaintext

package component:churn-tasks@0.1.0;
interface task {
id: func() -> string;
should-run: func() -> bool;
execute: func();
}
world churn {
export task;
}