1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-03-03 15:02:35 +02:00
sap-jenkins-library/cmd/interfaces.go

12 lines
185 B
Go
Raw Normal View History

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)
}