summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2025-04-16 11:46:04 +0200
committerSanto Cariotti <santo@dcariotti.me>2025-04-16 11:46:04 +0200
commitba4afeb4ee19c24b393ec21d374bdd752651c1a6 (patch)
tree2082deaddd348439605a7209fbffd4a355ff7b37 /cmd
parent76f46e54175253d4b2ba61b9cb8f2525a48c15d8 (diff)
Remove topics on network
Diffstat (limited to 'cmd')
-rw-r--r--cmd/ui/main.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd/ui/main.go b/cmd/ui/main.go
index 0b8d4bb..97f894a 100644
--- a/cmd/ui/main.go
+++ b/cmd/ui/main.go
@@ -3,12 +3,14 @@ package main
import (
"log"
+ "github.com/boozec/rahanna/internal/logger"
"github.com/boozec/rahanna/pkg/ui/views"
tea "github.com/charmbracelet/bubbletea"
)
func main() {
views.ClearScreen()
+ _ = logger.InitLogger("rahanna-ui.log")
p := tea.NewProgram(views.NewRahannaModel(), tea.WithAltScreen())