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