finish logs page

This commit is contained in:
Kujtim Hoxha 2025-04-09 19:07:39 +02:00
commit d39d52d95d
22 changed files with 564 additions and 250 deletions

View file

@ -1,6 +1,10 @@
package util
import tea "github.com/charmbracelet/bubbletea"
import (
"time"
tea "github.com/charmbracelet/bubbletea"
)
func CmdHandler(msg tea.Msg) tea.Cmd {
return func() tea.Msg {
@ -41,6 +45,7 @@ type (
InfoMsg struct {
Type InfoType
Msg string
TTL time.Duration
}
ClearStatusMsg struct{}
)