incus-mirror/client/oci_util.go
Piotr Resztak 727041a1c2
client: Use the umoci Go package instead of the command
Signed-off-by: Piotr Resztak <piotr.resztak@futurfusion.io>
2025-05-21 14:14:40 -04:00

12 lines
184 B
Go

//go:build !linux
package incus
import (
"fmt"
)
func unpackOCIImage(imagePath string, imageTag string, bundlePath string) error {
return fmt.Errorf("Platform isn't supported")
}