Callable
.
.
.
func (m module) GetPublicFuncs() eather.PublicFuncList {
list := make(eather.PublicFuncList)
list["test"] = test
return list
}
func test(data ...interface{}) (interface{}, error) {
return []string{"testing public function of module"}, nil
}
.
.
.Last updated