blob: 78799b4126d8070700d0636906433fbbeeb2488a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
# canonize yson here
(
#comment
(let config (DataSource 'config))
(let world (Configure! world config 'PureDataSource 'yt))
(let res_sink (DataSink 'result))
(let world (Write! world res_sink (Key) (Files '/home) '('('type))))
(let world (Commit! world res_sink))
(return world)
)
|