diff options
Diffstat (limited to 'ui/main.go')
-rw-r--r-- | ui/main.go | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/ui/main.go b/ui/main.go deleted file mode 100644 index 4bdcce9..0000000 --- a/ui/main.go +++ /dev/null @@ -1,19 +0,0 @@ -package main - -import ( - "log" - - "github.com/boozec/rahanna/ui/views" - tea "github.com/charmbracelet/bubbletea" -) - -func main() { - views.ClearScreen() - - p := tea.NewProgram(views.NewRahannaModel(), tea.WithAltScreen()) - - if _, err := p.Run(); err != nil { - log.Fatal(err) - } - views.ClearScreen() -} |