mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-16 11:37:36 +02:00
13 lines
246 B
Go
13 lines
246 B
Go
package utils
|
|
|
|
import "github.com/MontFerret/ferret/pkg/runtime/core"
|
|
|
|
func RegisterLib(ns core.Namespace) error {
|
|
return ns.RegisterFunctions(
|
|
core.NewFunctionsFromMap(map[string]core.Function{
|
|
"WAIT": Wait,
|
|
"PRINT": Print,
|
|
}),
|
|
)
|
|
}
|