(sessionID string)
| 404 | func (s *Store) statePath(sessionID string) string { |
| 405 | return filepath.Join(s.sessionDir(sessionID), "state.json") |
| 406 | } |
| 407 | |
| 408 | func (s *Store) skillRecoveryPath(sessionID string) string { |
| 409 | return filepath.Join(s.sessionDir(sessionID), "skill-recovery.json") |
| 410 | } |
| 411 |
no test coverage detected