Documentation
¶
Overview ¶
Package emoji provides symbol constants for CLI output. These symbols create a consistent visual language across all command-line commands.
Index ¶
Constants ¶
View Source
const ( Success = "✓" // Error represents failures or missing required configuration. // Used for: failed operations, missing API keys, validation errors. Error = "✗" // Stop represents critical stops, shutdowns, or blocking conditions. // Used for: graceful shutdowns, stop signals, blocking errors. Stop = "✗" // Warning represents warnings or non-critical issues. // Used for: deprecation notices, optional warnings. Warning = "!" // Optional represents optional or skipped configuration. // Used for: optional API keys, skipped operations. Optional = "-" // Unsupported represents unsupported or unavailable features. // Used for: providers without client implementation, disabled features. Unsupported = "×" // Unknown represents unknown or indeterminate states. // Used for: unrecognized status, undefined behavior. Unknown = "?" // Info represents informational messages. // Used for: general information, tips, context. Info = "i" Spinner = "..." )
CLI symbols.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.