1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-11-25 22:01:39 +02:00

Feature/#8 datetime (#152)

This commit is contained in:
3timeslazy
2018-10-30 22:59:18 +03:00
committed by Tim Voronov
parent f6e465d556
commit d8ae6cca8b
4 changed files with 86 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
package datetime
import "github.com/MontFerret/ferret/pkg/runtime/core"
func NewLib() map[string]core.Function {
return map[string]core.Function{
"NOW": Now,
}
}