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