1
0
Fork 0
mirror of https://github.com/Luzifer/yaml-vault.git synced 2025-01-08 12:52:50 +00:00
yaml-vault/vendor/github.com/Luzifer/korvike/functions/func_now.go

10 lines
152 B
Go
Raw Normal View History

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