── history persistence ───────────────────────────────────────────────────
()
| 176 | // ── history persistence ─────────────────────────────────────────────────── |
| 177 | |
| 178 | func historyPath() string { |
| 179 | home, err := os.UserHomeDir() |
| 180 | if err != nil { |
| 181 | return "" |
| 182 | } |
| 183 | return filepath.Join(home, ".bettatech_harness_history") |
| 184 | } |
| 185 | |
| 186 | func loadHistory() []string { |
| 187 | path := historyPath() |
no outgoing calls
no test coverage detected