github.com/joey-fossa/fossa-cli@v0.7.34-0.20190708193710-569f1e8679f0/analyzers/haskell/types.go (about)

     1  package haskell
     2  
     3  type Options struct {
     4  	Strategy Strategy `mapstructure:"strategy"`
     5  }
     6  
     7  type Strategy string
     8  
     9  const (
    10  	CabalInstall Strategy = "cabal-install"
    11  	Stack        Strategy = "stack"
    12  )