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.
Files
dagger/stdlib/dagger/dagger.cue
Solomon Hykes 98b3951c73 stdlib: os package
Signed-off-by: Solomon Hykes <solomon@dagger.io>
2021-05-11 17:32:50 -07:00

19 lines
414 B
CUE

package dagger
import (
)
// "dagger.io/dagger/op"
// An artifact such as source code checkout, container image, binary archive...
// May be passed as user input, or computed by a buildkit pipeline
// FIXME (perf). See https://github.com/dagger/dagger/issues/445
#Artifact: _
// Secret value
// FIXME: currently aliased as a string to mark secrets
// this requires proper support.
#Secret: {
string | bytes
}