47fac22230
- .claude/CLAUDE.md - .claude/commands/subagentes.md - .claude/rules/INDEX.md - .mcp.json - bash/functions/cybersecurity/analyze_dns.md - bash/functions/cybersecurity/audit_http_headers.md - bash/functions/cybersecurity/audit_ssh_config.md - bash/functions/cybersecurity/check_firewall.md - bash/functions/cybersecurity/detect_suspicious_users.md - bash/functions/cybersecurity/encrypt_file.md - ... Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
36 lines
792 B
Markdown
36 lines
792 B
Markdown
---
|
|
name: print_muted
|
|
kind: function
|
|
lang: go
|
|
domain: tui
|
|
version: "1.0.0"
|
|
purity: impure
|
|
signature: "func PrintMuted(msg string)"
|
|
description: "Imprime un mensaje con estilo atenuado (gris) en stdout."
|
|
tags: [tui, print, muted, output, pendiente-usar]
|
|
uses_functions: []
|
|
uses_types: []
|
|
returns: []
|
|
returns_optional: false
|
|
error_type: "error_go_core"
|
|
imports: []
|
|
params:
|
|
- name: msg
|
|
desc: "mensaje atenuado a imprimir"
|
|
output: "sin salida; imprime a stdout con estilo gris"
|
|
tested: false
|
|
tests: []
|
|
test_file_path: ""
|
|
file_path: "functions/tui/print_muted.go"
|
|
---
|
|
|
|
## Ejemplo
|
|
|
|
```go
|
|
tui.PrintMuted("Ultima actualizacion: hace 5 minutos")
|
|
```
|
|
|
|
## Notas
|
|
|
|
Implementacion real en github.com/lucasdataproyects/devfactory/tui. Este stub existe para documentar la firma y mantener el registry.
|