mirror of
https://github.com/stefanprodan/podinfo.git
synced 2026-04-10 04:56:49 +00:00
13 lines
158 B
CUE
13 lines
158 B
CUE
package main
|
|
|
|
import (
|
|
"tool/cli"
|
|
"encoding/yaml"
|
|
)
|
|
|
|
command: gen: {
|
|
task: print: cli.Print & {
|
|
text: yaml.MarshalStream([ for x in resources {x}])
|
|
}
|
|
}
|