github.com/MealCraft/glide@v0.13.4/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 }