| 1 | package doctor |
| 2 | |
| 3 | import "strings" |
| 4 | |
| 5 | // ResolveSessionRef turns a branch id or transcript path into the session's |
| 6 | // .jsonl path using the same lookup as the support bundle. |
| 7 | func ResolveSessionRef(ref string) (string, error) { |
| 8 | return resolveSessionBundlePath(strings.TrimSpace(ref)) |
| 9 | } |
| 10 |