| Josh Bleecher Snyder | 1c18ec9 | 2025-07-08 10:55:54 -0700 | [diff] [blame] | 1 | //go:build !innie && !outie |
| 2 | |
| 3 | // Package embedded provides access to embedded assets for the sketch binary. |
| 4 | // The native binary (outie) embeds only the linux binary. |
| 5 | // The linux binary (innie) embeds only the webui assets. |
| 6 | package embedded |
| 7 | |
| 8 | import ( |
| 9 | "io/fs" |
| 10 | ) |
| 11 | |
| 12 | // LinuxBinary returns the embedded linux binary. |
| Josh Bleecher Snyder | 5ae245b | 2025-07-08 22:00:24 +0000 | [diff] [blame] | 13 | func LinuxBinary(arch string) []byte { |
| Josh Bleecher Snyder | 1c18ec9 | 2025-07-08 10:55:54 -0700 | [diff] [blame] | 14 | return nil |
| 15 | } |
| 16 | |
| 17 | // WebUIFS returns the embedded webui filesystem for direct serving |
| 18 | func WebUIFS() fs.FS { |
| 19 | return nil |
| 20 | } |