github.com/MealCraft/glide@v0.13.4/action/name.go (about) 1 package action 2 3 import ( 4 "github.com/Masterminds/glide/msg" 5 ) 6 7 // Name prints the name of the package, according to the glide.yaml file. 8 func Name() { 9 conf := EnsureConfig() 10 msg.Puts(conf.Name) 11 }