blob: c69e80681413fffaac8721916999be6d87bcfb51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package tui
import "ior/internal/tui/messages"
// PidSelectedMsg is emitted when the user selects a PID from the process table.
type PidSelectedMsg = messages.PidSelectedMsg
// StatsTickMsg carries a fresh immutable snapshot from the stats engine.
type StatsTickMsg = messages.StatsTickMsg
// ExportRequestMsg requests an export of the current UI state.
type ExportRequestMsg = messages.ExportRequestMsg
// TracingStartedMsg signals that tracing started successfully.
type TracingStartedMsg = messages.TracingStartedMsg
// TracingErrorMsg reports an error while starting or running tracing.
type TracingErrorMsg = messages.TracingErrorMsg
|