Sign in
edge
/
third_party
/
Masterminds
/
glide
/
6d1ca09d2d70febe8c1788b4b2e0ec26a42a2ea2
/
.
/
action
/
name.go
blob: 77972b338165e42db46cf8067adb734c69f6b589 [
file
] [
log
] [
blame
]
package action
import (
"github.com/Masterminds/glide/msg"
)
// Name prints the name of the package, according to the glide.yaml file.
func Name() {
conf := EnsureConfig()
msg.Puts(conf.Name)
}