mirror of
https://github.com/SAP/jenkins-library.git
synced 2025-01-22 05:33:10 +02:00
10 lines
165 B
Go
10 lines
165 B
Go
package buildpacks
|
|
|
|
type PathEnum string
|
|
|
|
const (
|
|
PathEnumRoot = PathEnum("root")
|
|
PathEnumFolder = PathEnum("folder")
|
|
PathEnumArchive = PathEnum("archive")
|
|
)
|