mirror of
https://github.com/MontFerret/ferret.git
synced 2025-03-05 15:16:07 +02:00
11 lines
204 B
Go
11 lines
204 B
Go
package utils
|
|
|
|
import "github.com/MontFerret/ferret/pkg/runtime/core"
|
|
|
|
func RegisterLib(ns core.Namespace) error {
|
|
return ns.RegisterFunctions(core.FunctionsMap{
|
|
"WAIT": Wait,
|
|
"PRINT": Print,
|
|
})
|
|
}
|