Working codeviewer implemented

This commit is contained in:
2026-03-29 17:15:20 +02:00
parent 387804dbd0
commit 436a49b1b3
4 changed files with 75 additions and 59 deletions

14
ui/codeviewer/messages.go Normal file
View File

@@ -0,0 +1,14 @@
package codeviewer
type ChangeTextMsg struct {
Text string
}
type BreakpointMsg struct {
Line int
Added bool
}
type ExecutionStoppedMsg struct {
Line int
}