1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/pkg/buildpacks/buildpacks.go
2023-08-04 13:31:33 +02:00

10 lines
165 B
Go

package buildpacks
type PathEnum string
const (
PathEnumRoot = PathEnum("root")
PathEnumFolder = PathEnum("folder")
PathEnumArchive = PathEnum("archive")
)