()
| 22 | } |
| 23 | |
| 24 | func main() { |
| 25 | if len(os.Args) != 2 { |
| 26 | fmt.Println("Usage: echo <script.json>") |
| 27 | os.Exit(1) |
| 28 | } |
| 29 | |
| 30 | runEchoAgent(os.Args[1]) |
| 31 | } |
| 32 | |
| 33 | func loadScript(scriptPath string) ([]ScriptEntry, error) { |
| 34 | data, err := os.ReadFile(scriptPath) |
nothing calls this directly
no test coverage detected