返回 DeepSeek-Reasonix
session_ref.go
根目录 / internal / doctor / session_ref.go
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
10 lines GO