anoia.svc allow writing outputs

This commit is contained in:
Daniel Barlow
2024-08-08 11:37:50 +01:00
parent 0a629df48d
commit eb79928b37
3 changed files with 34 additions and 6 deletions

View File

@@ -15,3 +15,12 @@
:3 {:attribute "a33"}
:5 {:attribute "a55"}
:6 {:attribute "a66"}})))
(let [dir (. arg 1)
ex2 (svc.open dir)]
(ex2:output "fish" "food")
(ex2:output "nested/path/name" "value")
(ex2:output "nested/path/complex" {
:attribute "val"
:other "42"
}))