Files
pybug/ui/codeviewer/messages.go
2026-03-29 17:15:20 +02:00

15 lines
164 B
Go

package codeviewer
type ChangeTextMsg struct {
Text string
}
type BreakpointMsg struct {
Line int
Added bool
}
type ExecutionStoppedMsg struct {
Line int
}