diff options
| author | Kujtim Hoxha <[email protected]> | 2025-04-09 19:07:39 +0200 |
|---|---|---|
| committer | Kujtim Hoxha <[email protected]> | 2025-04-09 19:07:39 +0200 |
| commit | d39d52d95d6aaab67fb3a17efb9ed62cc290e72f (patch) | |
| tree | 940bad6f0c847ceb213e5fc684b6d87cbf9d6996 /internal/tui/util | |
| parent | 0d8d324ac6e640b95f4f2f62fd189399a959319a (diff) | |
| download | opencode-d39d52d95d6aaab67fb3a17efb9ed62cc290e72f.tar.gz opencode-d39d52d95d6aaab67fb3a17efb9ed62cc290e72f.zip | |
finish logs page
Diffstat (limited to 'internal/tui/util')
| -rw-r--r-- | internal/tui/util/util.go | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/internal/tui/util/util.go b/internal/tui/util/util.go index e006cbb43..2707009b3 100644 --- a/internal/tui/util/util.go +++ b/internal/tui/util/util.go @@ -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{} ) |
