blob: 70b82cfe9791227c91492194df5b75002ff68bf1 [file] [log] [blame]
//go:build !innie && !outie
// Package embedded provides access to embedded assets for the sketch binary.
// The native binary (outie) embeds only the linux binary.
// The linux binary (innie) embeds only the webui assets.
package embedded
import (
"io/fs"
)
// LinuxBinary returns the embedded linux binary.
func LinuxBinary(arch string) []byte {
return nil
}
// WebUIFS returns the embedded webui filesystem for direct serving
func WebUIFS() fs.FS {
return nil
}