FilePath.yqls 224 B

12345678910
  1. # do not check yson here
  2. (
  3. #comment
  4. (let config (DataSource 'config))
  5. (let res_sink (DataSink 'result))
  6. (let world (Write! world res_sink (Key) (FilePath 'MyFile) '()))
  7. (let world (Commit! world res_sink))
  8. (return world)
  9. )