stdlib: rename dagger.io/llb to dagger.io/dagger/op

Signed-off-by: Solomon Hykes <sh.github.6811@hykes.org>
This commit is contained in:
Solomon Hykes
2021-04-06 00:27:51 +00:00
parent 7fb90790f3
commit 6673ae69b3
26 changed files with 143 additions and 143 deletions

View File

@@ -2,7 +2,7 @@ package docker
import (
"dagger.io/dagger"
"dagger.io/llb"
"dagger.io/dagger/op"
)
#Ref: string
@@ -12,7 +12,7 @@ import (
source: dagger.#Artifact
image: #up: [
llb.#DockerBuild & {context: source},
op.#DockerBuild & {context: source},
]
}
@@ -23,15 +23,15 @@ import (
{
image: #Ref
out: #up: [
llb.#FetchContainer & {ref: image},
llb.#Exec & {"args": args},
op.#FetchContainer & {ref: image},
op.#Exec & {"args": args},
]
} | {
image: _
out: #up: [
llb.#Load & {from: image},
llb.#Exec & {"args": args},
op.#Load & {from: image},
op.#Exec & {"args": args},
]
}
}