mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2025-12-23 19:30:09 +08:00
13 lines
210 B
Go
13 lines
210 B
Go
//go:build no_script
|
|
|
|
package js
|
|
|
|
import "fmt"
|
|
|
|
func NewJS(name, code string) error {
|
|
fmt.Errorf("unsupported script on the build")
|
|
}
|
|
|
|
func Run(name string, args map[string]any, callback func(any, error)) {
|
|
}
|