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/git/git.cue
Solomon Hykes 6673ae69b3 stdlib: rename dagger.io/llb to dagger.io/dagger/op
Signed-off-by: Solomon Hykes <sh.github.6811@hykes.org>
2021-04-06 10:28:40 -07:00

20 lines
191 B
CUE

package git
import (
"dagger.io/dagger/op"
)
// A git repository
#Repository: {
remote: string
ref: string
#up: [
op.#FetchGit & {
"remote": remote
"ref": ref
},
]
}