1
0
Fork 0
mirror of https://github.com/Luzifer/yaml-vault.git synced 2025-01-07 20:41:52 +00:00
yaml-vault/vendor/github.com/Luzifer/korvike/functions/func_now.go
Knut Ahlers b4574de797
Update dependencies, switch to dep for vendoring
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2019-01-09 16:20:41 +01:00

9 lines
152 B
Go

package functions
import "time"
func init() {
registerFunction("now", func(name string, v ...string) string {
return time.Now().Format(name)
})
}