(ctx context.Context, cmd string, args ...string)
| 83 | } |
| 84 | |
| 85 | func (execer) PTYCommandContext(ctx context.Context, cmd string, args ...string) *pty.Cmd { |
| 86 | return pty.CommandContext(ctx, cmd, args...) |
| 87 | } |
| 88 | |
| 89 | type priorityExecer struct { |
| 90 | binPath string |
nothing calls this directly
no test coverage detected