blob: a5b8c49ad14e1e1c35ab1b2dd992b563996f188f [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() []byte {
return nil
}
// WebUIFS returns the embedded webui filesystem for direct serving
func WebUIFS() fs.FS {
return nil
}