mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
14 lines
259 B
Go
14 lines
259 B
Go
|
package cnbutils
|
||
|
|
||
|
import (
|
||
|
"github.com/SAP/jenkins-library/pkg/command"
|
||
|
"github.com/SAP/jenkins-library/pkg/docker"
|
||
|
"github.com/SAP/jenkins-library/pkg/piperutils"
|
||
|
)
|
||
|
|
||
|
type BuildUtils interface {
|
||
|
command.ExecRunner
|
||
|
piperutils.FileUtils
|
||
|
docker.Download
|
||
|
}
|