blob: a5b8c49ad14e1e1c35ab1b2dd992b563996f188f [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.
13func LinuxBinary() []byte {
14 return nil
15}
16
17// WebUIFS returns the embedded webui filesystem for direct serving
18func WebUIFS() fs.FS {
19 return nil
20}