github.com/ouraigua/jenkins-library@v0.0.0-20231028010029-fbeaf2f3aa9b/pkg/buildpacks/buildpacks.go (about)

     1  package buildpacks
     2  
     3  type PathEnum string
     4  
     5  const (
     6  	PathEnumRoot    = PathEnum("root")
     7  	PathEnumFolder  = PathEnum("folder")
     8  	PathEnumArchive = PathEnum("archive")
     9  )