update urls
This commit is contained in:
parent
45ea45de40
commit
d222bc2e49
@ -1,6 +1,6 @@
|
||||
gitea_urls:
|
||||
api: https://gitea.asdf.cafe/api/v1
|
||||
download: https://gitea.asdf.cafe
|
||||
api: https://git.asdf.cafe/api/v1
|
||||
download: https://git.asdf.cafe
|
||||
skip_tls_verify: false
|
||||
|
||||
before:
|
||||
|
10
README.md
10
README.md
@ -1,7 +1,7 @@
|
||||
IF YOU ARE ON GITHUB.COM GO HERE INSTEAD: https://gitea.asdf.cafe/abs3nt/gospt :)
|
||||
IF YOU ARE ON GITHUB.COM GO HERE INSTEAD: https://git.asdf.cafe/abs3nt/gospt :)
|
||||
|
||||
|
||||
If you open an issue or PR on github I won't see it please use gitea. Register on asdf and open your PRs there
|
||||
If you open an issue or PR on github I won't see it please use git. Register on asdf and open your PRs there
|
||||
|
||||
This project is still under heavy development and some things might not work or not work as intended. Don't hesitate to open an issue to let me know.
|
||||
|
||||
@ -23,7 +23,7 @@ or
|
||||
|
||||
# To build from source by pulling and building the binary
|
||||
|
||||
```git clone https://gitea.asdf.cafe/abs3nt/gospt```
|
||||
```git clone https://git.asdf.cafe/abs3nt/gospt```
|
||||
|
||||
```cd gospt```
|
||||
|
||||
@ -77,6 +77,6 @@ To view help:
|
||||
|
||||
Very open to contributations feel free to open a PR
|
||||
|
||||
[tmux plugin](https://gitea.asdf.cafe/abs3nt/tmux-gospt)
|
||||
[tmux plugin](https://git.asdf.cafe/abs3nt/tmux-gospt)
|
||||
|
||||
[wiki](https://gitea.asdf.cafe/abs3nt/gospt/wiki)
|
||||
[wiki](https://git.asdf.cafe/abs3nt/gospt/wiki)
|
||||
|
2
go.mod
2
go.mod
@ -1,4 +1,4 @@
|
||||
module gitea.asdf.cafe/abs3nt/gospt
|
||||
module git.asdf.cafe/abs3nt/gospt
|
||||
|
||||
go 1.19
|
||||
|
||||
|
2
main.go
2
main.go
@ -1,7 +1,7 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"gitea.asdf.cafe/abs3nt/gospt/src/cmd"
|
||||
"git.asdf.cafe/abs3nt/gospt/src/cmd"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
@ -11,8 +11,8 @@ import (
|
||||
|
||||
"tuxpa.in/a/zlog/log"
|
||||
|
||||
"gitea.asdf.cafe/abs3nt/gospt/src/config"
|
||||
"gitea.asdf.cafe/abs3nt/gospt/src/gctx"
|
||||
"git.asdf.cafe/abs3nt/gospt/src/config"
|
||||
"git.asdf.cafe/abs3nt/gospt/src/gctx"
|
||||
|
||||
"github.com/zmb3/spotify/v2"
|
||||
spotifyauth "github.com/zmb3/spotify/v2/auth"
|
||||
|
@ -8,10 +8,10 @@ import (
|
||||
"path/filepath"
|
||||
"strings"
|
||||
|
||||
cmds "gitea.asdf.cafe/abs3nt/gospt/src/commands"
|
||||
cmds "git.asdf.cafe/abs3nt/gospt/src/commands"
|
||||
|
||||
"gitea.asdf.cafe/abs3nt/gospt/src/config"
|
||||
"gitea.asdf.cafe/abs3nt/gospt/src/gctx"
|
||||
"git.asdf.cafe/abs3nt/gospt/src/config"
|
||||
"git.asdf.cafe/abs3nt/gospt/src/gctx"
|
||||
"tuxpa.in/a/zlog"
|
||||
|
||||
"github.com/cristalhq/aconfig"
|
||||
|
@ -1,7 +1,7 @@
|
||||
package cmd
|
||||
|
||||
import (
|
||||
"gitea.asdf.cafe/abs3nt/gospt/src/tui"
|
||||
"git.asdf.cafe/abs3nt/gospt/src/tui"
|
||||
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
@ -4,7 +4,7 @@ import (
|
||||
"os"
|
||||
"path/filepath"
|
||||
|
||||
"gitea.asdf.cafe/abs3nt/gospt/src/tui"
|
||||
"git.asdf.cafe/abs3nt/gospt/src/tui"
|
||||
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
@ -4,7 +4,7 @@ import (
|
||||
"os"
|
||||
"path/filepath"
|
||||
|
||||
"gitea.asdf.cafe/abs3nt/gospt/src/tui"
|
||||
"git.asdf.cafe/abs3nt/gospt/src/tui"
|
||||
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
@ -15,9 +15,9 @@ import (
|
||||
"time"
|
||||
|
||||
"gfx.cafe/util/go/frand"
|
||||
"gitea.asdf.cafe/abs3nt/gospt/src/auth"
|
||||
"gitea.asdf.cafe/abs3nt/gospt/src/cache"
|
||||
"gitea.asdf.cafe/abs3nt/gospt/src/gctx"
|
||||
"git.asdf.cafe/abs3nt/gospt/src/auth"
|
||||
"git.asdf.cafe/abs3nt/gospt/src/cache"
|
||||
"git.asdf.cafe/abs3nt/gospt/src/gctx"
|
||||
|
||||
"github.com/zmb3/spotify/v2"
|
||||
_ "modernc.org/sqlite"
|
||||
|
@ -1,8 +1,8 @@
|
||||
package tui
|
||||
|
||||
import (
|
||||
"gitea.asdf.cafe/abs3nt/gospt/src/commands"
|
||||
"gitea.asdf.cafe/abs3nt/gospt/src/gctx"
|
||||
"git.asdf.cafe/abs3nt/gospt/src/commands"
|
||||
"git.asdf.cafe/abs3nt/gospt/src/gctx"
|
||||
|
||||
"github.com/zmb3/spotify/v2"
|
||||
)
|
||||
|
@ -5,8 +5,8 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"gitea.asdf.cafe/abs3nt/gospt/src/commands"
|
||||
"gitea.asdf.cafe/abs3nt/gospt/src/gctx"
|
||||
"git.asdf.cafe/abs3nt/gospt/src/commands"
|
||||
"git.asdf.cafe/abs3nt/gospt/src/gctx"
|
||||
|
||||
"github.com/atotto/clipboard"
|
||||
"github.com/charmbracelet/bubbles/key"
|
||||
|
@ -3,8 +3,8 @@ package tui
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"gitea.asdf.cafe/abs3nt/gospt/src/commands"
|
||||
"gitea.asdf.cafe/abs3nt/gospt/src/gctx"
|
||||
"git.asdf.cafe/abs3nt/gospt/src/commands"
|
||||
"git.asdf.cafe/abs3nt/gospt/src/gctx"
|
||||
|
||||
tea "github.com/charmbracelet/bubbletea"
|
||||
)
|
||||
|
@ -5,8 +5,8 @@ import (
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"gitea.asdf.cafe/abs3nt/gospt/src/commands"
|
||||
"gitea.asdf.cafe/abs3nt/gospt/src/gctx"
|
||||
"git.asdf.cafe/abs3nt/gospt/src/commands"
|
||||
"git.asdf.cafe/abs3nt/gospt/src/gctx"
|
||||
|
||||
"github.com/charmbracelet/bubbles/list"
|
||||
"github.com/zmb3/spotify/v2"
|
||||
|
Loading…
Reference in New Issue
Block a user