mirror of
https://github.com/mudler/luet.git
synced 2025-09-08 18:49:39 +00:00
Update gomod and vendor
This commit is contained in:
22
vendor/github.com/moby/buildkit/exporter/exporter.go
generated
vendored
Normal file
22
vendor/github.com/moby/buildkit/exporter/exporter.go
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
package exporter
|
||||
|
||||
import (
|
||||
"context"
|
||||
|
||||
"github.com/moby/buildkit/cache"
|
||||
)
|
||||
|
||||
type Exporter interface {
|
||||
Resolve(context.Context, map[string]string) (ExporterInstance, error)
|
||||
}
|
||||
|
||||
type ExporterInstance interface {
|
||||
Name() string
|
||||
Export(context.Context, Source) (map[string]string, error)
|
||||
}
|
||||
|
||||
type Source struct {
|
||||
Ref cache.ImmutableRef
|
||||
Refs map[string]cache.ImmutableRef
|
||||
Metadata map[string][]byte
|
||||
}
|
Reference in New Issue
Block a user