Finish off basic dynamic node
Some checks are pending
test / test (push) Waiting to run

This commit is contained in:
2025-01-23 13:01:43 +10:30
parent 70248de192
commit e2604d4e70
6 changed files with 40 additions and 44 deletions

View File

@@ -21,17 +21,11 @@ interface types {
read-into-string: func() -> string;
}
resource write-map {
keys: func() -> list<string>;
put: func(name: string, value: string);
}
resource csv-readers {
get-reader: func(name: string) -> option<csv-reader>;
}
resource csv-writer {
write-map: func(row: write-map);
write-row: func(row: list<tuple<string, string>>);
}