Browse Source

No more github

main
Gitea 2 years ago
parent
commit
09c3956cb9
  1. 8
      OBM.go
  2. 2
      go.mod
  3. 2
      manager/beatmap.go
  4. 2
      manager/parse.go
  5. 2
      manager/remove.go
  6. 4
      manager/replace.go
  7. 4
      manager/retrieve.go
  8. 4
      settings/settings.go

8
OBM.go

@ -7,10 +7,10 @@ import (
"sync"
"time"
"github.com/Unbewohnte/OBM/logger"
"github.com/Unbewohnte/OBM/manager"
"github.com/Unbewohnte/OBM/settings"
"github.com/Unbewohnte/OBM/util"
"unbewohnte.xyz/Unbewohnte/OBM/logger"
"unbewohnte.xyz/Unbewohnte/OBM/manager"
"unbewohnte.xyz/Unbewohnte/OBM/settings"
"unbewohnte.xyz/Unbewohnte/OBM/util"
)
type result struct {

2
go.mod

@ -1,3 +1,3 @@
module github.com/Unbewohnte/OBM
module unbewohnte.xyz/Unbewohnte/OBM
go 1.16

2
manager/beatmap.go

@ -5,7 +5,7 @@ import (
"os"
"path/filepath"
"github.com/Unbewohnte/OBM/util"
"unbewohnte.xyz/Unbewohnte/OBM/util"
)
// the main beatmap struct, contains necessary data for functions

2
manager/parse.go

@ -6,7 +6,7 @@ import (
"path/filepath"
"strings"
"github.com/Unbewohnte/OBM/util"
"unbewohnte.xyz/Unbewohnte/OBM/util"
)
// parses given .osu file and returns the filename of its background

2
manager/remove.go

@ -5,7 +5,7 @@ import (
"os"
"path/filepath"
"github.com/Unbewohnte/OBM/logger"
"unbewohnte.xyz/Unbewohnte/OBM/logger"
)
// parses each difficulty for background info, removes found backgrounds

4
manager/replace.go

@ -5,8 +5,8 @@ import (
"os"
"path/filepath"
"github.com/Unbewohnte/OBM/logger"
"github.com/Unbewohnte/OBM/util"
"unbewohnte.xyz/Unbewohnte/OBM/logger"
"unbewohnte.xyz/Unbewohnte/OBM/util"
)
// parses each beatmap`s .osu file for background info;

4
manager/retrieve.go

@ -5,8 +5,8 @@ import (
"os"
"path/filepath"
"github.com/Unbewohnte/OBM/logger"
"github.com/Unbewohnte/OBM/util"
"unbewohnte.xyz/Unbewohnte/OBM/logger"
"unbewohnte.xyz/Unbewohnte/OBM/util"
)
// retrieves backgrounds from given beatmap folder (same as in `ReplaceBackgrounds`) and copies them to the retrievement path

4
settings/settings.go

@ -5,8 +5,8 @@ import (
"fmt"
"os"
"github.com/Unbewohnte/OBM/logger"
"github.com/Unbewohnte/OBM/util"
"unbewohnte.xyz/Unbewohnte/OBM/logger"
"unbewohnte.xyz/Unbewohnte/OBM/util"
)
const (

Loading…
Cancel
Save