54a2fe4393
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/llb"
|
|
)
|
|
|
|
// A git repository
|
|
#Repository: {
|
|
|
|
remote: string
|
|
ref: string
|
|
|
|
#compute: [
|
|
llb.#FetchGit & {
|
|
"remote": remote
|
|
"ref": ref
|
|
},
|
|
]
|
|
}
|