Merge pull request 'fix' (#9) from fix into main
ci/woodpecker/push/woodpecker Pipeline was successful Details

Reviewed-on: https://gitea.asdf.cafe/abs3nt/gospt/pulls/9
This commit is contained in:
abs3nt 2023-02-09 07:30:17 -08:00
commit bd1fbc8b27
36 changed files with 50 additions and 42 deletions

8
.gitignore vendored
View File

@ -1,3 +1,11 @@
bin/
bin/*
/gospt
.idea/*
.idea
*.log
*.out
*.tmp

2
go.mod
View File

@ -1,4 +1,4 @@
module gospt
module gitea.asdf.cafe/abs3nt/gospt
go 1.19

View File

@ -1,7 +1,7 @@
package main
import (
"gospt/src/cmd"
"gitea.asdf.cafe/abs3nt/gospt/src/cmd"
)
func main() {

View File

@ -10,8 +10,8 @@ import (
"os/exec"
"path/filepath"
"gospt/src/config"
"gospt/src/gctx"
"gitea.asdf.cafe/abs3nt/gospt/src/config"
"gitea.asdf.cafe/abs3nt/gospt/src/gctx"
"github.com/zmb3/spotify/v2"
spotifyauth "github.com/zmb3/spotify/v2/auth"

View File

@ -1,7 +1,7 @@
package cmd
import (
"gospt/src/commands"
"gitea.asdf.cafe/abs3nt/gospt/src/commands"
"github.com/spf13/cobra"
)

View File

@ -1,7 +1,7 @@
package cmd
import (
"gospt/src/commands"
"gitea.asdf.cafe/abs3nt/gospt/src/commands"
"github.com/spf13/cobra"
)

View File

@ -1,7 +1,7 @@
package cmd
import (
"gospt/src/commands"
"gitea.asdf.cafe/abs3nt/gospt/src/commands"
"github.com/spf13/cobra"
)

View File

@ -4,7 +4,7 @@ import (
"fmt"
"os"
"gospt/src/commands"
"gitea.asdf.cafe/abs3nt/gospt/src/commands"
"github.com/spf13/cobra"
)

View File

@ -4,7 +4,7 @@ import (
"fmt"
"os"
"gospt/src/commands"
"gitea.asdf.cafe/abs3nt/gospt/src/commands"
"github.com/spf13/cobra"
)

View File

@ -1,7 +1,7 @@
package cmd
import (
"gospt/src/commands"
"gitea.asdf.cafe/abs3nt/gospt/src/commands"
"github.com/spf13/cobra"
)

View File

@ -3,7 +3,7 @@ package cmd
import (
"strconv"
"gospt/src/commands"
"gitea.asdf.cafe/abs3nt/gospt/src/commands"
"github.com/spf13/cobra"
)

View File

@ -1,7 +1,7 @@
package cmd
import (
"gospt/src/commands"
"gitea.asdf.cafe/abs3nt/gospt/src/commands"
"github.com/spf13/cobra"
)

View File

@ -1,7 +1,7 @@
package cmd
import (
"gospt/src/commands"
"gitea.asdf.cafe/abs3nt/gospt/src/commands"
"github.com/spf13/cobra"
)

View File

@ -1,7 +1,7 @@
package cmd
import (
"gospt/src/commands"
"gitea.asdf.cafe/abs3nt/gospt/src/commands"
"github.com/spf13/cobra"
)

View File

@ -1,7 +1,7 @@
package cmd
import (
"gospt/src/commands"
"gitea.asdf.cafe/abs3nt/gospt/src/commands"
"github.com/spf13/cobra"
)

View File

@ -1,7 +1,7 @@
package cmd
import (
"gospt/src/commands"
"gitea.asdf.cafe/abs3nt/gospt/src/commands"
"github.com/spf13/cobra"
)

View File

@ -1,7 +1,7 @@
package cmd
import (
"gospt/src/commands"
"gitea.asdf.cafe/abs3nt/gospt/src/commands"
"github.com/spf13/cobra"
)

View File

@ -1,7 +1,7 @@
package cmd
import (
"gospt/src/commands"
"gitea.asdf.cafe/abs3nt/gospt/src/commands"
"github.com/spf13/cobra"
)

View File

@ -1,7 +1,7 @@
package cmd
import (
"gospt/src/commands"
"gitea.asdf.cafe/abs3nt/gospt/src/commands"
"github.com/spf13/cobra"
)

View File

@ -8,9 +8,9 @@ import (
"path/filepath"
"strings"
"gospt/src/auth"
"gospt/src/config"
"gospt/src/gctx"
"gitea.asdf.cafe/abs3nt/gospt/src/auth"
"gitea.asdf.cafe/abs3nt/gospt/src/config"
"gitea.asdf.cafe/abs3nt/gospt/src/gctx"
"github.com/cristalhq/aconfig"
"github.com/cristalhq/aconfig/aconfigyaml"

View File

@ -3,7 +3,7 @@ package cmd
import (
"strconv"
"gospt/src/commands"
"gitea.asdf.cafe/abs3nt/gospt/src/commands"
"github.com/spf13/cobra"
)

View File

@ -1,7 +1,7 @@
package cmd
import (
"gospt/src/tui"
"gitea.asdf.cafe/abs3nt/gospt/src/tui"
"github.com/spf13/cobra"
)

View File

@ -1,7 +1,7 @@
package cmd
import (
"gospt/src/commands"
"gitea.asdf.cafe/abs3nt/gospt/src/commands"
"github.com/spf13/cobra"
)

View File

@ -1,7 +1,7 @@
package cmd
import (
"gospt/src/commands"
"gitea.asdf.cafe/abs3nt/gospt/src/commands"
"github.com/spf13/cobra"
)

View File

@ -1,7 +1,7 @@
package cmd
import (
"gospt/src/commands"
"gitea.asdf.cafe/abs3nt/gospt/src/commands"
"github.com/spf13/cobra"
)

View File

@ -4,8 +4,8 @@ import (
"os"
"path/filepath"
"gospt/src/commands"
"gospt/src/tui"
"gitea.asdf.cafe/abs3nt/gospt/src/commands"
"gitea.asdf.cafe/abs3nt/gospt/src/tui"
"github.com/spf13/cobra"
)

View File

@ -4,8 +4,8 @@ import (
"os"
"path/filepath"
"gospt/src/commands"
"gospt/src/tui"
"gitea.asdf.cafe/abs3nt/gospt/src/commands"
"gitea.asdf.cafe/abs3nt/gospt/src/tui"
"github.com/spf13/cobra"
)

View File

@ -1,7 +1,7 @@
package cmd
import (
"gospt/src/commands"
"gitea.asdf.cafe/abs3nt/gospt/src/commands"
"github.com/spf13/cobra"
)

View File

@ -1,7 +1,7 @@
package cmd
import (
"gospt/src/commands"
"gitea.asdf.cafe/abs3nt/gospt/src/commands"
"github.com/spf13/cobra"
)

View File

@ -3,7 +3,7 @@ package cmd
import (
"strconv"
"gospt/src/commands"
"gitea.asdf.cafe/abs3nt/gospt/src/commands"
"github.com/spf13/cobra"
)

View File

@ -14,7 +14,7 @@ import (
"strings"
"time"
"gospt/src/gctx"
"gitea.asdf.cafe/abs3nt/gospt/src/gctx"
"github.com/zmb3/spotify/v2"
_ "modernc.org/sqlite"

View File

@ -1,8 +1,8 @@
package tui
import (
"gospt/src/commands"
"gospt/src/gctx"
"gitea.asdf.cafe/abs3nt/gospt/src/commands"
"gitea.asdf.cafe/abs3nt/gospt/src/gctx"
"github.com/zmb3/spotify/v2"
)

View File

@ -4,7 +4,7 @@ import (
"fmt"
"time"
"gospt/src/commands"
"gitea.asdf.cafe/abs3nt/gospt/src/commands"
"github.com/charmbracelet/bubbles/list"
)

View File

@ -5,7 +5,7 @@ import (
"strings"
"time"
"gospt/src/gctx"
"gitea.asdf.cafe/abs3nt/gospt/src/gctx"
"github.com/atotto/clipboard"
"github.com/charmbracelet/bubbles/key"

View File

@ -3,7 +3,7 @@ package tui
import (
"fmt"
"gospt/src/gctx"
"gitea.asdf.cafe/abs3nt/gospt/src/gctx"
tea "github.com/charmbracelet/bubbletea"
"github.com/zmb3/spotify/v2"

View File

@ -5,8 +5,8 @@ import (
"sync"
"time"
"gospt/src/commands"
"gospt/src/gctx"
"gitea.asdf.cafe/abs3nt/gospt/src/commands"
"gitea.asdf.cafe/abs3nt/gospt/src/gctx"
"github.com/charmbracelet/bubbles/list"
"github.com/zmb3/spotify/v2"