blob: a89ff4be18ce28bc40b827e17e67d2d18c4246c6 [file] [log] [blame]
Josh Bleecher Snyder1c18ec92025-07-08 10:55:54 -07001//go:build outie
2
3package embedded
4
5import (
6 _ "embed"
7 "io/fs"
8)
9
10//go:embed sketch-linux/sketch-linux
11var sketchLinuxBinary []byte
12
13// LinuxBinary returns the embedded linux binary.
14func LinuxBinary() []byte {
15 return sketchLinuxBinary
16}
17
18// WebUIFS returns the embedded webui filesystem.
19func WebUIFS() fs.FS {
20 // webUIAssets are not present in outie
21 return nil
22}