github.com/YousefHaggyHeroku/pack@v1.5.5/registry/type.go (about)

     1  package registry
     2  
     3  const (
     4  	TypeGit    = "git"
     5  	TypeGitHub = "github"
     6  )
     7  
     8  var Types = []string{
     9  	TypeGit,
    10  	TypeGitHub,
    11  }