From 2e1e6cda11b76a71ca0a5f4cb6c4e80580a4c22d Mon Sep 17 00:00:00 2001 From: HikariKnight <2557889+HikariKnight@users.noreply.github.com> Date: Thu, 26 Oct 2023 20:45:11 +0200 Subject: [PATCH] Re-enable old tui, until new tui is done --- internal/ui_main.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/internal/ui_main.go b/internal/ui_main.go index d1eb4d8..9d7b591 100644 --- a/internal/ui_main.go +++ b/internal/ui_main.go @@ -7,7 +7,6 @@ import ( "os" "github.com/HikariKnight/ls-iommu/pkg/errorcheck" - "github.com/HikariKnight/quickpassthrough/internal/pages" tea "github.com/charmbracelet/bubbletea" ) @@ -19,13 +18,14 @@ func Tui() { errorcheck.ErrorCheck(err, "Error creating log file") defer logfile.Close() - pages.Welcome() + // New WIP Tui + //pages.Welcome() // Make a blank model to keep our state in - /*m := NewModel() + m := NewModel() // Start the program with the model p := tea.NewProgram(m, tea.WithAltScreen()) _, err = p.Run() - errorcheck.ErrorCheck(err, "Failed to initialize UI")*/ + errorcheck.ErrorCheck(err, "Failed to initialize UI") }