Borg/pkg/ui/data.go
google-labs-jules[bot] 38fafbf639 feat: Add comprehensive docstrings and refactor matrix to tim
Add comprehensive Go docstrings with examples to all packages to achieve 100% coverage.

Refactor the `matrix` package to `tim` (Terminal Isolation Matrix). Update all references to the old package and terminology across the codebase, including commands, tests, and examples.

Fix inconsistencies in command-line flags and help text related to the refactoring.
2025-11-14 21:23:11 +00:00

9 lines
229 B
Go

package ui
import "embed"
// QuotesJSON is an embedded filesystem containing the quotes.json file.
// This allows the quotes to be bundled directly into the application binary.
//
//go:embed quotes.json
var QuotesJSON embed.FS