Skip to content

Commit 0248939

Browse files
fix: update repository name
1 parent 8d1dbfd commit 0248939

18 files changed

+42
-35
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ As a [Go](https://golang.org) project, you'll need to have Go installed on your
1414
1. To contribute to Heimdallr, you'll need to fork the repository and clone it to your machine. You can do this by running the following command:
1515

1616
```bash
17-
git clone https://github.com/myrkvi/heimdallr.git
17+
git clone https://github.com/NLLCommunity/heimdallr.git
1818
cd heimdallr
1919
```
2020

commands/admin.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"github.com/disgoorg/disgo/handler"
1010
"github.com/disgoorg/json"
1111

12-
"github.com/myrkvi/heimdallr/model"
13-
"github.com/myrkvi/heimdallr/utils"
12+
"github.com/NLLCommunity/heimdallr/model"
13+
"github.com/NLLCommunity/heimdallr/utils"
1414
)
1515

1616
var AdminCommand = discord.SlashCommandCreate{

commands/ban.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ import (
88
"github.com/disgoorg/disgo/handler"
99
"github.com/disgoorg/disgo/rest"
1010
"github.com/disgoorg/json"
11-
"github.com/myrkvi/heimdallr/model"
12-
"github.com/myrkvi/heimdallr/utils"
11+
12+
"github.com/NLLCommunity/heimdallr/model"
13+
"github.com/NLLCommunity/heimdallr/utils"
1314
)
1415

1516
var BanCommand = discord.SlashCommandCreate{

commands/create_role_button.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ import (
77
"github.com/disgoorg/disgo/discord"
88
"github.com/disgoorg/disgo/handler"
99
"github.com/disgoorg/json"
10-
"github.com/myrkvi/heimdallr/utils"
10+
11+
"github.com/NLLCommunity/heimdallr/utils"
1112
)
1213

1314
var CreateRoleButtonCommand = discord.SlashCommandCreate{

commands/gatekeep.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import (
1111
"github.com/disgoorg/json"
1212
"github.com/disgoorg/snowflake/v2"
1313

14-
"github.com/myrkvi/heimdallr/model"
15-
"github.com/myrkvi/heimdallr/utils"
14+
"github.com/NLLCommunity/heimdallr/model"
15+
"github.com/NLLCommunity/heimdallr/utils"
1616
)
1717

1818
var ApproveUserCommand = discord.UserCommandCreate{

commands/infractions.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import (
1414
"github.com/disgoorg/json"
1515
"github.com/disgoorg/snowflake/v2"
1616

17-
"github.com/myrkvi/heimdallr/model"
18-
"github.com/myrkvi/heimdallr/utils"
17+
"github.com/NLLCommunity/heimdallr/model"
18+
"github.com/NLLCommunity/heimdallr/utils"
1919
)
2020

2121
// pageSize is the size of one page of infractions

commands/kick.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"github.com/disgoorg/disgo/rest"
99
"github.com/disgoorg/json"
1010

11-
"github.com/myrkvi/heimdallr/utils"
11+
"github.com/NLLCommunity/heimdallr/utils"
1212
)
1313

1414
var KickCommand = discord.SlashCommandCreate{

commands/prune.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import (
1010
"github.com/disgoorg/disgo/rest"
1111
"github.com/disgoorg/json"
1212

13-
"github.com/myrkvi/heimdallr/globals"
14-
"github.com/myrkvi/heimdallr/model"
15-
"github.com/myrkvi/heimdallr/utils"
13+
"github.com/NLLCommunity/heimdallr/globals"
14+
"github.com/NLLCommunity/heimdallr/model"
15+
"github.com/NLLCommunity/heimdallr/utils"
1616
)
1717

1818
var PruneCommand = discord.SlashCommandCreate{

commands/quote.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ import (
1414
"github.com/disgoorg/disgo/handler"
1515
"github.com/disgoorg/json"
1616
"github.com/disgoorg/snowflake/v2"
17-
"github.com/myrkvi/heimdallr/utils"
17+
18+
"github.com/NLLCommunity/heimdallr/utils"
1819
)
1920

2021
var quoteUrlRegex = regexp.MustCompile(

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/myrkvi/heimdallr
1+
module github.com/NLLCommunity/heimdallr
22

33
go 1.23.0
44

listeners/antispam_message.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"github.com/disgoorg/snowflake/v2"
1515
"github.com/jellydator/ttlcache/v3"
1616

17-
"github.com/myrkvi/heimdallr/model"
17+
"github.com/NLLCommunity/heimdallr/model"
1818
)
1919

2020
const minMessageLength = 10

listeners/audit_log.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import (
77
"github.com/disgoorg/disgo/discord"
88
"github.com/disgoorg/disgo/events"
99

10-
"github.com/myrkvi/heimdallr/globals"
11-
"github.com/myrkvi/heimdallr/model"
12-
"github.com/myrkvi/heimdallr/utils"
10+
"github.com/NLLCommunity/heimdallr/globals"
11+
"github.com/NLLCommunity/heimdallr/model"
12+
"github.com/NLLCommunity/heimdallr/utils"
1313
)
1414

1515
func OnAuditLog(e *events.GuildAuditLogEntryCreate) {

listeners/ban.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ import (
55

66
"github.com/disgoorg/disgo/discord"
77
"github.com/disgoorg/disgo/events"
8-
"github.com/myrkvi/heimdallr/model"
9-
"github.com/myrkvi/heimdallr/utils"
8+
9+
"github.com/NLLCommunity/heimdallr/model"
10+
"github.com/NLLCommunity/heimdallr/utils"
1011
)
1112

1213
func OnMemberBan(e *events.GuildBan) {

listeners/gatekeep_join.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import (
44
"log/slog"
55

66
"github.com/disgoorg/disgo/events"
7-
"github.com/myrkvi/heimdallr/model"
7+
8+
"github.com/NLLCommunity/heimdallr/model"
89
)
910

1011
func OnGatekeepUserJoin(e *events.GuildMemberJoin) {

listeners/joinleave.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"github.com/disgoorg/disgo/discord"
88
"github.com/disgoorg/disgo/events"
99

10-
"github.com/myrkvi/heimdallr/model"
11-
"github.com/myrkvi/heimdallr/utils"
10+
"github.com/NLLCommunity/heimdallr/model"
11+
"github.com/NLLCommunity/heimdallr/utils"
1212
)
1313

1414
func OnUserJoin(e *events.GuildMemberJoin) {

listeners/notify_on_warned_user_join.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ import (
77

88
"github.com/disgoorg/disgo/discord"
99
"github.com/disgoorg/disgo/events"
10-
"github.com/myrkvi/heimdallr/model"
11-
"github.com/myrkvi/heimdallr/utils"
10+
11+
"github.com/NLLCommunity/heimdallr/model"
12+
"github.com/NLLCommunity/heimdallr/utils"
1213
)
1314

1415
func OnWarnedUserJoin(e *events.GuildMemberJoin) {

main.go

+6-6
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ import (
2121
"github.com/disgoorg/snowflake/v2"
2222
"github.com/spf13/viper"
2323

24-
"github.com/myrkvi/heimdallr/commands"
25-
"github.com/myrkvi/heimdallr/components"
26-
_ "github.com/myrkvi/heimdallr/config"
27-
"github.com/myrkvi/heimdallr/listeners"
28-
"github.com/myrkvi/heimdallr/model"
29-
"github.com/myrkvi/heimdallr/scheduled_tasks"
24+
"github.com/NLLCommunity/heimdallr/commands"
25+
"github.com/NLLCommunity/heimdallr/components"
26+
_ "github.com/NLLCommunity/heimdallr/config"
27+
"github.com/NLLCommunity/heimdallr/listeners"
28+
"github.com/NLLCommunity/heimdallr/model"
29+
"github.com/NLLCommunity/heimdallr/scheduled_tasks"
3030
)
3131

3232
var rmGlobalCommands = flag.Bool("rm-global-commands", false, "Remove global commands")

scheduled_tasks/remove_temp_bans.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ import (
77

88
"github.com/disgoorg/disgo/bot"
99
"github.com/disgoorg/disgo/rest"
10-
"github.com/myrkvi/heimdallr/model"
11-
"github.com/myrkvi/heimdallr/task"
10+
11+
"github.com/NLLCommunity/heimdallr/model"
12+
"github.com/NLLCommunity/heimdallr/task"
1213
)
1314

1415
func RemoveTempBansScheduledTask(client bot.Client) task.Task {

0 commit comments

Comments
 (0)