12 lines
170 B
Plaintext
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;
|
||
|
}
|