github.com/goonzoid/gcli@v0.2.3-0.20150926213610-155587606ea1/skeleton/template_functions.go (about)

     1  package skeleton
     2  
     3  import "time"
     4  
     5  // dateFunc returns formatted date. Format follows
     6  // https://github.com/olivierlacan/keep-a-changelog format
     7  func dateFunc() func() string {
     8  	return func() string {
     9  		return time.Now().Format("2006-01-02")
    10  	}
    11  }