Skip to content

Commit

Permalink
change the module path from "Kotone-DiVE" to "github.com/tpc3/Kotone-…
Browse files Browse the repository at this point in the history
…DiVE"
  • Loading branch information
Raku-2006 committed Jul 26, 2024
1 parent b2985d0 commit 26f5a67
Show file tree
Hide file tree
Showing 30 changed files with 64 additions and 64 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Kotone-DiVE
module github.com/tpc3/Kotone-DiVE

go 1.21

Expand Down
8 changes: 4 additions & 4 deletions lib/cmds/config.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package cmds

import (
"Kotone-DiVE/lib/config"
"Kotone-DiVE/lib/db"
"Kotone-DiVE/lib/embed"
"Kotone-DiVE/lib/voices"
"github.com/tpc3/Kotone-DiVE/lib/config"
"github.com/tpc3/Kotone-DiVE/lib/db"
"github.com/tpc3/Kotone-DiVE/lib/embed"
"github.com/tpc3/Kotone-DiVE/lib/voices"
"strconv"
"strings"

Expand Down
4 changes: 2 additions & 2 deletions lib/cmds/debug.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package cmds

import (
"Kotone-DiVE/lib/config"
"Kotone-DiVE/lib/utils"
"github.com/tpc3/Kotone-DiVE/lib/config"
"github.com/tpc3/Kotone-DiVE/lib/utils"
"strings"

"github.com/bwmarrin/discordgo"
Expand Down
6 changes: 3 additions & 3 deletions lib/cmds/dump.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package cmds

import (
"Kotone-DiVE/lib/config"
"Kotone-DiVE/lib/db"
"Kotone-DiVE/lib/embed"
"github.com/tpc3/Kotone-DiVE/lib/config"
"github.com/tpc3/Kotone-DiVE/lib/db"
"github.com/tpc3/Kotone-DiVE/lib/embed"
"bytes"
"strings"

Expand Down
4 changes: 2 additions & 2 deletions lib/cmds/help.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package cmds

import (
"Kotone-DiVE/lib/config"
"Kotone-DiVE/lib/embed"
"github.com/tpc3/Kotone-DiVE/lib/config"
"github.com/tpc3/Kotone-DiVE/lib/embed"

"github.com/bwmarrin/discordgo"
"golang.org/x/text/cases"
Expand Down
6 changes: 3 additions & 3 deletions lib/cmds/join.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package cmds

import (
"Kotone-DiVE/lib/config"
"Kotone-DiVE/lib/db"
"Kotone-DiVE/lib/embed"
"github.com/tpc3/Kotone-DiVE/lib/config"
"github.com/tpc3/Kotone-DiVE/lib/db"
"github.com/tpc3/Kotone-DiVE/lib/embed"
"sync"

"github.com/bwmarrin/discordgo"
Expand Down
8 changes: 4 additions & 4 deletions lib/cmds/leave.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package cmds

import (
"Kotone-DiVE/lib/config"
"Kotone-DiVE/lib/db"
"Kotone-DiVE/lib/embed"
"Kotone-DiVE/lib/utils"
"github.com/tpc3/Kotone-DiVE/lib/config"
"github.com/tpc3/Kotone-DiVE/lib/db"
"github.com/tpc3/Kotone-DiVE/lib/embed"
"github.com/tpc3/Kotone-DiVE/lib/utils"
"github.com/bwmarrin/discordgo"
)

Expand Down
4 changes: 2 additions & 2 deletions lib/cmds/ping.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package cmds

import (
"Kotone-DiVE/lib/db"
"Kotone-DiVE/lib/embed"
"github.com/tpc3/Kotone-DiVE/lib/db"
"github.com/tpc3/Kotone-DiVE/lib/embed"
"runtime"
"strconv"

Expand Down
6 changes: 3 additions & 3 deletions lib/cmds/policy.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package cmds

import (
"Kotone-DiVE/lib/config"
"Kotone-DiVE/lib/db"
"Kotone-DiVE/lib/embed"
"github.com/tpc3/Kotone-DiVE/lib/config"
"github.com/tpc3/Kotone-DiVE/lib/db"
"github.com/tpc3/Kotone-DiVE/lib/embed"
"sort"
"strconv"
"strings"
Expand Down
6 changes: 3 additions & 3 deletions lib/cmds/replace.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package cmds

import (
"Kotone-DiVE/lib/config"
"Kotone-DiVE/lib/db"
"Kotone-DiVE/lib/embed"
"github.com/tpc3/Kotone-DiVE/lib/config"
"github.com/tpc3/Kotone-DiVE/lib/db"
"github.com/tpc3/Kotone-DiVE/lib/embed"
"regexp"
"sort"
"strconv"
Expand Down
6 changes: 3 additions & 3 deletions lib/cmds/skip.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package cmds

import (
"Kotone-DiVE/lib/config"
"Kotone-DiVE/lib/db"
"Kotone-DiVE/lib/embed"
"github.com/tpc3/Kotone-DiVE/lib/config"
"github.com/tpc3/Kotone-DiVE/lib/db"
"github.com/tpc3/Kotone-DiVE/lib/embed"
"github.com/bwmarrin/discordgo"
)

Expand Down
8 changes: 4 additions & 4 deletions lib/cmds/user.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package cmds

import (
"Kotone-DiVE/lib/config"
"Kotone-DiVE/lib/db"
"Kotone-DiVE/lib/embed"
"Kotone-DiVE/lib/voices"
"github.com/tpc3/Kotone-DiVE/lib/config"
"github.com/tpc3/Kotone-DiVE/lib/db"
"github.com/tpc3/Kotone-DiVE/lib/embed"
"github.com/tpc3/Kotone-DiVE/lib/voices"
"strings"

"github.com/bwmarrin/discordgo"
Expand Down
2 changes: 1 addition & 1 deletion lib/db/bbolt.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package db

import (
"Kotone-DiVE/lib/config"
"github.com/tpc3/Kotone-DiVE/lib/config"
"encoding/json"

"go.etcd.io/bbolt"
Expand Down
2 changes: 1 addition & 1 deletion lib/db/cache.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package db

import (
"Kotone-DiVE/lib/config"
"github.com/tpc3/Kotone-DiVE/lib/config"
"regexp"
"sync"
"time"
Expand Down
2 changes: 1 addition & 1 deletion lib/db/db.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package db

import (
"Kotone-DiVE/lib/config"
"github.com/tpc3/Kotone-DiVE/lib/config"
"errors"
"log"
)
Expand Down
2 changes: 1 addition & 1 deletion lib/embed/embed.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package embed

import (
"Kotone-DiVE/lib/config"
"github.com/tpc3/Kotone-DiVE/lib/config"
"log"
"runtime/debug"
"time"
Expand Down
12 changes: 6 additions & 6 deletions lib/handler.go
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package lib

import (
"Kotone-DiVE/lib/cmds"
"Kotone-DiVE/lib/config"
"Kotone-DiVE/lib/db"
"Kotone-DiVE/lib/embed"
"Kotone-DiVE/lib/utils"
"Kotone-DiVE/lib/voices"
"github.com/tpc3/Kotone-DiVE/lib/cmds"
"github.com/tpc3/Kotone-DiVE/lib/config"
"github.com/tpc3/Kotone-DiVE/lib/db"
"github.com/tpc3/Kotone-DiVE/lib/embed"
"github.com/tpc3/Kotone-DiVE/lib/utils"
"github.com/tpc3/Kotone-DiVE/lib/voices"
"errors"
"log"
"runtime/debug"
Expand Down
4 changes: 2 additions & 2 deletions lib/utils/replace.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package utils

import (
"Kotone-DiVE/lib/config"
"Kotone-DiVE/lib/db"
"github.com/tpc3/Kotone-DiVE/lib/config"
"github.com/tpc3/Kotone-DiVE/lib/db"
"regexp"
"strconv"
"time"
Expand Down
4 changes: 2 additions & 2 deletions lib/utils/voice.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package utils

import (
"Kotone-DiVE/lib/config"
"Kotone-DiVE/lib/db"
"github.com/tpc3/Kotone-DiVE/lib/config"
"github.com/tpc3/Kotone-DiVE/lib/db"
"github.com/bwmarrin/discordgo"
"log"
"time"
Expand Down
2 changes: 1 addition & 1 deletion lib/voices/aquestalk-proxy.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package voices

import (
"Kotone-DiVE/lib/config"
"github.com/tpc3/Kotone-DiVE/lib/config"
"bytes"
"encoding/json"
"errors"
Expand Down
2 changes: 1 addition & 1 deletion lib/voices/azure.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package voices

import (
"Kotone-DiVE/lib/config"
"github.com/tpc3/Kotone-DiVE/lib/config"
"bytes"
"encoding/json"
"encoding/xml"
Expand Down
2 changes: 1 addition & 1 deletion lib/voices/coeiroink.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package voices

import (
"Kotone-DiVE/lib/config"
"github.com/tpc3/Kotone-DiVE/lib/config"
"bytes"
"encoding/json"
"errors"
Expand Down
2 changes: 1 addition & 1 deletion lib/voices/encoder.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package voices

import (
"Kotone-DiVE/lib/config"
"github.com/tpc3/Kotone-DiVE/lib/config"
"bytes"
"github.com/pion/opus/pkg/oggreader"
"github.com/u2takey/ffmpeg-go"
Expand Down
2 changes: 1 addition & 1 deletion lib/voices/gcp.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package voices

import (
"Kotone-DiVE/lib/config"
"github.com/tpc3/Kotone-DiVE/lib/config"
"context"
"errors"
"log"
Expand Down
2 changes: 1 addition & 1 deletion lib/voices/gtts.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package voices

import (
"Kotone-DiVE/lib/config"
"github.com/tpc3/Kotone-DiVE/lib/config"
"errors"
"io"
"log"
Expand Down
6 changes: 3 additions & 3 deletions lib/voices/helper.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package voices

import (
"Kotone-DiVE/lib/config"
"Kotone-DiVE/lib/db"
"Kotone-DiVE/lib/utils"
"github.com/tpc3/Kotone-DiVE/lib/config"
"github.com/tpc3/Kotone-DiVE/lib/db"
"github.com/tpc3/Kotone-DiVE/lib/utils"
"errors"
"hash/crc64"
"io"
Expand Down
2 changes: 1 addition & 1 deletion lib/voices/voicetext.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package voices

import (
"Kotone-DiVE/lib/config"
"github.com/tpc3/Kotone-DiVE/lib/config"
"errors"
"io"
"log"
Expand Down
2 changes: 1 addition & 1 deletion lib/voices/voicevox.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package voices

import (
"Kotone-DiVE/lib/config"
"github.com/tpc3/Kotone-DiVE/lib/config"
"bytes"
"encoding/json"
"errors"
Expand Down
2 changes: 1 addition & 1 deletion lib/voices/watson.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package voices

import (
"Kotone-DiVE/lib/config"
"github.com/tpc3/Kotone-DiVE/lib/config"
"bytes"
"encoding/xml"
"errors"
Expand Down
8 changes: 4 additions & 4 deletions main.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package main

import (
"Kotone-DiVE/lib"
"Kotone-DiVE/lib/config"
"Kotone-DiVE/lib/db"
"Kotone-DiVE/lib/voices"
"github.com/tpc3/Kotone-DiVE/lib"
"github.com/tpc3/Kotone-DiVE/lib/config"
"github.com/tpc3/Kotone-DiVE/lib/db"
"github.com/tpc3/Kotone-DiVE/lib/voices"
"log"
"os"
"os/signal"
Expand Down

0 comments on commit 26f5a67

Please sign in to comment.