6673ae69b3
Signed-off-by: Solomon Hykes <sh.github.6811@hykes.org>
20 lines
191 B
CUE
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
|
|
},
|
|
]
|
|
}
|