shell/js_export.go

11 lines
174 B
Go
Raw Permalink Normal View History

package shell
import "apigo.cc/go/jsmod"
func init() {
jsmod.Register("shell", map[string]any{
"Run": Run,
"RunCommand": RunCommand,
}, "Run", "RunCommand")
}