Documentation ¶ Index ¶ type Box Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Box ¶ type Box interface { // Add a file content to box Add(file string, content []byte) // Get a file from box Get(file string) []byte // Has a file in box Has(file string) bool // List files in box List() []string } var Boxed Box = newEmbedBox() Embed box expose Source Files ¶ View all Source files box.go doc.go manifests.go Click to show internal directories. Click to hide internal directories.