mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +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")
|
|
)
|