github.com/mfycheng/glide@v0.11.2-0.20160818232903-be8a502f4bc4/action/init.go (about)

     1  package action
     2  
     3  import (
     4  	gpath "github.com/Masterminds/glide/path"
     5  )
     6  
     7  // Init initializes the action subsystem for handling one or more subesequent actions.
     8  func Init(yaml, home string) {
     9  	gpath.GlideFile = yaml
    10  	gpath.SetHome(home)
    11  }