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