blob: 70b82cfe9791227c91492194df5b75002ff68bf1 [file] [log] [blame]
Josh Bleecher Snyder1c18ec92025-07-08 10:55:54 -07001//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.
6package embedded
7
8import (
9 "io/fs"
10)
11
12// LinuxBinary returns the embedded linux binary.
Josh Bleecher Snyder5ae245b2025-07-08 22:00:24 +000013func LinuxBinary(arch string) []byte {
Josh Bleecher Snyder1c18ec92025-07-08 10:55:54 -070014 return nil
15}
16
17// WebUIFS returns the embedded webui filesystem for direct serving
18func WebUIFS() fs.FS {
19 return nil
20}