-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlazyfy.go
35 lines (31 loc) · 968 Bytes
/
lazyfy.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package main
import (
"fmt"
"os"
tea "github.com/charmbracelet/bubbletea"
"github.com/ehabshaaban/lazyfy/internal/ui"
)
func main() {
if err := tea.NewProgram(ui.NewPlaylistModel(), tea.WithAltScreen()).Start(); err != nil {
fmt.Println("Error running lazyfy!:", err)
os.Exit(1)
}
}
// TODO:
// [x] fix rendering track list issue
// [x] update readme, tui cmds, ci, test, bubbletea, redirect uri
// [x] building
// [x] testing
// [] tagger, releaser - ci
// [x] create new playlist with selected tracks, baf model
// [x] Add create private playlist support
// [x] add tests
// [x] add ci
// [x] update track desc
// [x] change prev from b to backspace + delete track with delete key
// [x] update playlist desc
// [x] select tracks, with highlight
// [x] unselect tracks, with unhighlight
// [] refactor test to authenticate itself without link authentication to run on ci
// [] cobra cmd - country specific - defaulted no country
// [] cache auth token