gospt/src/tui/tui.go

24 lines
485 B
Go
Raw Normal View History

2023-01-09 18:54:21 +00:00
package tui
import (
"fmt"
2023-02-09 07:28:41 +00:00
"gitea.asdf.cafe/abs3nt/gospt/src/gctx"
2023-01-09 18:54:21 +00:00
tea "github.com/charmbracelet/bubbletea"
"github.com/zmb3/spotify/v2"
)
// StartTea the entry point for the UI. Initializes the model.
2023-01-11 17:45:29 +00:00
func StartTea(ctx *gctx.Context, client *spotify.Client, mode string) error {
2023-01-14 01:41:52 +00:00
m, err := InitMain(ctx, client, Mode(mode))
2023-01-09 18:54:21 +00:00
if err != nil {
fmt.Println("UH OH")
}
P = tea.NewProgram(m, tea.WithAltScreen())
if err := P.Start(); err != nil {
return err
}
return nil
}