mirror of
https://github.com/Luzifer/yaml-vault.git
synced 2025-01-08 12:52:50 +00:00
10 lines
152 B
Go
10 lines
152 B
Go
|
package functions
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
func init() {
|
||
|
registerFunction("now", func(name string, v ...string) string {
|
||
|
return time.Now().Format(name)
|
||
|
})
|
||
|
}
|