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.
9 lines
229 B
Go
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
|