2018-09-18 22:42:38 +02:00
|
|
|
package utils
|
|
|
|
|
|
|
|
import "github.com/MontFerret/ferret/pkg/runtime/core"
|
|
|
|
|
|
|
|
func NewLib() map[string]core.Function {
|
|
|
|
return map[string]core.Function{
|
2018-09-25 17:43:58 +02:00
|
|
|
"WAIT": Wait,
|
|
|
|
"LOG": Log,
|
2018-09-18 22:42:38 +02:00
|
|
|
}
|
|
|
|
}
|