package shell // CmdResult almacena el resultado de ejecutar un comando del sistema. // Implementation: github.com/lucasdataproyects/devfactory/shell type CmdResult struct { Stdout string Stderr string ExitCode int }