feat: add dev packages"

This commit is contained in:
2025-01-10 21:40:12 +01:00
parent 22a0d5a22b
commit 0458a8228f
6 changed files with 444 additions and 42 deletions

View File

@@ -8,6 +8,13 @@ interface process {
}
}
interface http {
resource client {
constructor();
get: func(url: string) -> list<u8>;
}
}
interface task {
id: func() -> string;
should-run: func() -> bool;
@@ -15,6 +22,7 @@ interface task {
}
world churn {
export task;
export process;
export http;
export task;
}