This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
dagger/stdlib/io/io.cue

34 lines
504 B
CUE
Raw Normal View History

package io
import (
"dagger.io/dagger"
"dagger.io/dagger/op"
)
#File: {
from: dagger.#Artifact
path: string
read: {
format: "string" | "json" | "yaml" | "lines"
data: {
string
#up: [
op.#Load & {"from": from},
op.#Export & {source: path, "format": format},
]
}
}
write: *null | {
// FIXME: support writing in multiple formats
// FIXME: append
data: _
#up: [
op.#Load & {"from": from},
op.#WriteFile & {
dest: path
contents: data
},
]
}
}