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 be64c1576b stdlib package: git
Signed-off-by: Solomon Hykes <sh.github.6811@hykes.org>
2021-03-12 18:10:36 -08:00

20 lines
197 B
CUE

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