File tree Expand file tree Collapse file tree 28 files changed +67
-67
lines changed Expand file tree Collapse file tree 28 files changed +67
-67
lines changed Original file line number Diff line number Diff line change 1
1
package commands
2
2
3
3
import (
4
- "github.com/bela333 /Vigne/messages"
4
+ "github.com/moedevs /Vigne/messages"
5
5
"github.com/bwmarrin/discordgo"
6
6
)
7
7
Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ package commands
2
2
3
3
import (
4
4
"fmt"
5
- "github.com/bela333 /Vigne/errors"
6
- "github.com/bela333 /Vigne/messages"
7
- "github.com/bela333 /Vigne/server"
5
+ "github.com/moedevs /Vigne/errors"
6
+ "github.com/moedevs /Vigne/messages"
7
+ "github.com/moedevs /Vigne/server"
8
8
"github.com/bwmarrin/discordgo"
9
9
"regexp"
10
10
"strings"
Original file line number Diff line number Diff line change 1
1
package database
2
2
3
3
import (
4
- "github.com/bela333 /Vigne/errors"
4
+ "github.com/moedevs /Vigne/errors"
5
5
"github.com/go-redis/redis"
6
6
)
7
7
Original file line number Diff line number Diff line change 1
1
package database
2
2
3
3
import (
4
- "github.com/bela333 /Vigne/errors"
4
+ "github.com/moedevs /Vigne/errors"
5
5
"time"
6
6
)
7
7
Original file line number Diff line number Diff line change 1
1
package database
2
2
3
3
import (
4
- "github.com/bela333 /Vigne/errors"
4
+ "github.com/moedevs /Vigne/errors"
5
5
"strings"
6
6
)
7
7
Original file line number Diff line number Diff line change 1
1
package database
2
2
3
- import "github.com/bela333 /Vigne/errors"
3
+ import "github.com/moedevs /Vigne/errors"
4
4
5
5
type Welcomer struct {
6
6
d * Database
Original file line number Diff line number Diff line change @@ -2,16 +2,16 @@ package main
2
2
3
3
import (
4
4
"fmt"
5
- "github.com/bela333 /Vigne/commands"
6
- "github.com/bela333 /Vigne/messages"
7
- "github.com/bela333 /Vigne/modules/debug"
8
- "github.com/bela333 /Vigne/modules/help"
9
- "github.com/bela333 /Vigne/modules/music"
10
- "github.com/bela333 /Vigne/modules/ping"
11
- "github.com/bela333 /Vigne/modules/reactionMenu"
12
- "github.com/bela333 /Vigne/modules/roles"
13
- "github.com/bela333 /Vigne/modules/welcome"
14
- "github.com/bela333 /Vigne/server"
5
+ "github.com/moedevs /Vigne/commands"
6
+ "github.com/moedevs /Vigne/messages"
7
+ "github.com/moedevs /Vigne/modules/debug"
8
+ "github.com/moedevs /Vigne/modules/help"
9
+ "github.com/moedevs /Vigne/modules/music"
10
+ "github.com/moedevs /Vigne/modules/ping"
11
+ "github.com/moedevs /Vigne/modules/reactionMenu"
12
+ "github.com/moedevs /Vigne/modules/roles"
13
+ "github.com/moedevs /Vigne/modules/welcome"
14
+ "github.com/moedevs /Vigne/server"
15
15
)
16
16
17
17
func main () {
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package messages
2
2
3
3
import (
4
4
"fmt"
5
- "github.com/bela333 /Vigne/errors"
5
+ "github.com/moedevs /Vigne/errors"
6
6
"github.com/bwmarrin/discordgo"
7
7
"time"
8
8
)
Original file line number Diff line number Diff line change 1
1
package messages
2
2
3
3
import (
4
- "github.com/bela333 /Vigne/server"
4
+ "github.com/moedevs /Vigne/server"
5
5
"github.com/bwmarrin/discordgo"
6
6
)
7
7
Original file line number Diff line number Diff line change 1
1
package debug
2
2
3
3
import (
4
- "github.com/bela333 /Vigne/commands"
5
- "github.com/bela333 /Vigne/messages"
4
+ "github.com/moedevs /Vigne/commands"
5
+ "github.com/moedevs /Vigne/messages"
6
6
"github.com/bwmarrin/discordgo"
7
7
"time"
8
8
)
Original file line number Diff line number Diff line change 1
1
package debug
2
2
3
3
import (
4
- "github.com/bela333 /Vigne/commands"
5
- "github.com/bela333 /Vigne/server"
4
+ "github.com/moedevs /Vigne/commands"
5
+ "github.com/moedevs /Vigne/server"
6
6
)
7
7
8
8
type DebugModule struct {
Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ package debug
2
2
3
3
import (
4
4
"fmt"
5
- "github.com/bela333 /Vigne/commands"
6
- "github.com/bela333 /Vigne/messages"
7
- "github.com/bela333 /Vigne/server"
5
+ "github.com/moedevs /Vigne/commands"
6
+ "github.com/moedevs /Vigne/messages"
7
+ "github.com/moedevs /Vigne/server"
8
8
"github.com/bwmarrin/discordgo"
9
9
"strings"
10
10
"time"
Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ package help
2
2
3
3
import (
4
4
"fmt"
5
- "github.com/bela333 /Vigne/commands"
6
- "github.com/bela333 /Vigne/errors"
7
- "github.com/bela333 /Vigne/messages"
5
+ "github.com/moedevs /Vigne/commands"
6
+ "github.com/moedevs /Vigne/errors"
7
+ "github.com/moedevs /Vigne/messages"
8
8
"github.com/bwmarrin/discordgo"
9
9
"time"
10
10
)
Original file line number Diff line number Diff line change 1
1
package help
2
2
3
3
import (
4
- "github.com/bela333 /Vigne/commands"
5
- "github.com/bela333 /Vigne/server"
4
+ "github.com/moedevs /Vigne/commands"
5
+ "github.com/moedevs /Vigne/server"
6
6
)
7
7
8
8
type HelpModule struct {
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package music
2
2
3
3
import (
4
4
"fmt"
5
- "github.com/bela333 /Vigne/messages"
5
+ "github.com/moedevs /Vigne/messages"
6
6
"github.com/bwmarrin/discordgo"
7
7
)
8
8
Original file line number Diff line number Diff line change 1
1
package music
2
2
3
3
import (
4
- "github.com/bela333 /Vigne/commands"
5
- "github.com/bela333 /Vigne/server"
4
+ "github.com/moedevs /Vigne/commands"
5
+ "github.com/moedevs /Vigne/server"
6
6
)
7
7
8
8
type MusicModule struct {
Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ package music
3
3
import (
4
4
"encoding/json"
5
5
"fmt"
6
- "github.com/bela333 /Vigne/errors"
7
- "github.com/bela333 /Vigne/messages"
8
- "github.com/bela333 /Vigne/server"
6
+ "github.com/moedevs /Vigne/errors"
7
+ "github.com/moedevs /Vigne/messages"
8
+ "github.com/moedevs /Vigne/server"
9
9
"github.com/bwmarrin/discordgo"
10
10
"io"
11
11
"os/exec"
Original file line number Diff line number Diff line change @@ -2,10 +2,10 @@ package music
2
2
3
3
import (
4
4
"fmt"
5
- "github.com/bela333 /Vigne/commands"
6
- "github.com/bela333 /Vigne/errors"
7
- "github.com/bela333 /Vigne/messages"
8
- "github.com/bela333 /Vigne/server"
5
+ "github.com/moedevs /Vigne/commands"
6
+ "github.com/moedevs /Vigne/errors"
7
+ "github.com/moedevs /Vigne/messages"
8
+ "github.com/moedevs /Vigne/server"
9
9
"github.com/bwmarrin/discordgo"
10
10
"strings"
11
11
"time"
Original file line number Diff line number Diff line change 1
1
package music
2
2
3
3
import (
4
- "github.com/bela333 /Vigne/commands"
5
- "github.com/bela333 /Vigne/errors"
6
- "github.com/bela333 /Vigne/messages"
7
- "github.com/bela333 /Vigne/server"
4
+ "github.com/moedevs /Vigne/commands"
5
+ "github.com/moedevs /Vigne/errors"
6
+ "github.com/moedevs /Vigne/messages"
7
+ "github.com/moedevs /Vigne/server"
8
8
"github.com/bwmarrin/discordgo"
9
9
)
10
10
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ package ping
2
2
3
3
import (
4
4
"fmt"
5
- "github.com/bela333 /Vigne/commands"
6
- "github.com/bela333 /Vigne/messages"
5
+ "github.com/moedevs /Vigne/commands"
6
+ "github.com/moedevs /Vigne/messages"
7
7
"github.com/bwmarrin/discordgo"
8
8
"time"
9
9
)
Original file line number Diff line number Diff line change 1
1
package ping
2
2
3
3
import (
4
- "github.com/bela333 /Vigne/commands"
5
- "github.com/bela333 /Vigne/server"
4
+ "github.com/moedevs /Vigne/commands"
5
+ "github.com/moedevs /Vigne/server"
6
6
)
7
7
8
8
type PingModule struct {
Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ package reactionMenu
2
2
3
3
import (
4
4
"fmt"
5
- "github.com/bela333 /Vigne/commands"
6
- "github.com/bela333 /Vigne/messages"
7
- "github.com/bela333 /Vigne/server"
5
+ "github.com/moedevs /Vigne/commands"
6
+ "github.com/moedevs /Vigne/messages"
7
+ "github.com/moedevs /Vigne/server"
8
8
"github.com/bwmarrin/discordgo"
9
9
"time"
10
10
)
Original file line number Diff line number Diff line change 1
1
package reactionMenu
2
2
3
3
import (
4
- "github.com/bela333 /Vigne/commands"
5
- "github.com/bela333 /Vigne/server"
4
+ "github.com/moedevs /Vigne/commands"
5
+ "github.com/moedevs /Vigne/server"
6
6
)
7
7
8
8
type ReactionModule struct {
Original file line number Diff line number Diff line change @@ -2,10 +2,10 @@ package roles
2
2
3
3
import (
4
4
"fmt"
5
- "github.com/bela333 /Vigne/commands"
6
- "github.com/bela333 /Vigne/errors"
7
- "github.com/bela333 /Vigne/messages"
8
- "github.com/bela333 /Vigne/server"
5
+ "github.com/moedevs /Vigne/commands"
6
+ "github.com/moedevs /Vigne/errors"
7
+ "github.com/moedevs /Vigne/messages"
8
+ "github.com/moedevs /Vigne/server"
9
9
"github.com/bwmarrin/discordgo"
10
10
"github.com/go-redis/redis"
11
11
"time"
Original file line number Diff line number Diff line change 1
1
package roles
2
2
3
3
import (
4
- "github.com/bela333 /Vigne/commands"
5
- "github.com/bela333 /Vigne/server"
4
+ "github.com/moedevs /Vigne/commands"
5
+ "github.com/moedevs /Vigne/server"
6
6
)
7
7
8
8
type RolesModule struct {
Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ package welcome
2
2
3
3
import (
4
4
"fmt"
5
- "github.com/bela333 /Vigne/database"
6
- "github.com/bela333 /Vigne/messages"
7
- "github.com/bela333 /Vigne/server"
5
+ "github.com/moedevs /Vigne/database"
6
+ "github.com/moedevs /Vigne/messages"
7
+ "github.com/moedevs /Vigne/server"
8
8
"github.com/bwmarrin/discordgo"
9
9
"time"
10
10
)
Original file line number Diff line number Diff line change 1
1
package server
2
2
3
3
import (
4
- "github.com/bela333 /Vigne/database"
5
- "github.com/bela333 /Vigne/errors"
4
+ "github.com/moedevs /Vigne/database"
5
+ "github.com/moedevs /Vigne/errors"
6
6
"github.com/bwmarrin/discordgo"
7
7
)
8
8
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package server
2
2
3
3
import (
4
4
"fmt"
5
- "github.com/bela333 /Vigne/errors"
5
+ "github.com/moedevs /Vigne/errors"
6
6
)
7
7
8
8
type Module interface {
You can’t perform that action at this time.
0 commit comments