update urls

This commit is contained in:
abs3nt 2023-03-09 23:48:02 -08:00
parent 45ea45de40
commit d222bc2e49
Signed by: abs3nt
GPG Key ID: FDC6662313FA9386
14 changed files with 28 additions and 28 deletions

View File

@ -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:

View File

@ -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
View File

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

View File

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

View File

@ -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"

View File

@ -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"

View File

@ -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"
)

View File

@ -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"
)

View File

@ -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"
)

View File

@ -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"

View File

@ -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"
)

View File

@ -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"

View File

@ -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"
)

View File

@ -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"