返回 DeepSeek-Reasonix
session_runtime_removal.go
根目录 / desktop / session_runtime_removal.go
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
17 lines GO