mirror of
https://github.com/hauler-dev/hauler.git
synced 2026-02-14 18:09:51 +00:00
refactor to baseline on pluggable oci collection/distribution Co-authored-by: Josh Wolf <josh@joshwolf.dev>
12 lines
198 B
Go
12 lines
198 B
Go
package driver
|
|
|
|
import (
|
|
"github.com/rancherfederal/hauler/pkg/content/file"
|
|
"github.com/rancherfederal/hauler/pkg/content/image"
|
|
)
|
|
|
|
type Rke2 struct {
|
|
Files []file.File
|
|
Images []image.Image
|
|
}
|