package shell import "time" // Implementation: github.com/lucasdataproyects/devfactory/shell // RunShellTimeout ejecuta un comando shell con timeout configurable. func RunShellTimeout(command string, timeout time.Duration) Result[CmdResult] { // stub — implementation in devfactory/shell return Result[CmdResult]{} }