| 1 | package main |
| 2 | |
| 3 | import "reasonix/internal/control" |
| 4 | |
| 5 | type removedSessionRuntime struct { |
| 6 | tab *WorkspaceTab |
| 7 | ctrl control.SessionAPI |
| 8 | sink *tabEventSink |
| 9 | sessionDir string |
| 10 | sessionPath string |
| 11 | scope string |
| 12 | workspaceRoot string |
| 13 | topicID string |
| 14 | readOnly bool |
| 15 | failedStartup bool |
| 16 | } |
| 17 |