mirror of
https://github.com/SAP/jenkins-library.git
synced 2025-02-07 13:42:23 +02:00
12 lines
185 B
Go
12 lines
185 B
Go
package cmd
|
|
|
|
type execRunner interface {
|
|
RunExecutable(e string, p ...string) error
|
|
Dir(d string)
|
|
}
|
|
|
|
type shellRunner interface {
|
|
RunShell(s string, c string) error
|
|
Dir(d string)
|
|
}
|