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")
}