Sign in
cue
/
cue
/
v0.2.0
/
.
/
doc
/
tutorial
/
kubernetes
/
quick
/
services
/
dump_tool.cue
blob: b5301ecf41e58234538ff5bfe506b27f87db420c [
file
] [
log
] [
blame
]
package
kube
import
(
"encoding/yaml"
"tool/cli"
)
command
:
dump
:
{
task
:
print
:
cli
.
Print
&
{
text
:
yaml
.
MarshalStream
(
objects
)
}
}