mirror of
https://github.com/lxc/incus
synced 2026-08-02 05:26:46 +00:00
12 lines
184 B
Go
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")
|
|
}
|