增加lua调试功能

This commit is contained in:
algotao
2025-09-02 15:45:56 +08:00
parent ed06c46bde
commit fff023b56d
10 changed files with 200 additions and 10 deletions

View File

@@ -36,6 +36,8 @@ func Run(args ...string) error {
return RunTarget(args...)
case "bind":
return RunBind(args...)
case "script":
return RunScript(args...)
default:
err := fmt.Errorf(`unknown command "%v"`+"\n"+`Run 'saastool help' for usage`, name)
fmt.Fprintln(os.Stderr, err.Error())