Skip to content

Commit

Permalink
fix: rename module
Browse files Browse the repository at this point in the history
  • Loading branch information
mlnrDev committed Jan 5, 2024
1 parent a602954 commit cb9ab98
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module dearrow-thumbnails
module dearrow-bot

go 1.21

Expand Down
2 changes: 1 addition & 1 deletion handlers/branding.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package handlers

import (
"bytes"
"dearrow-thumbnails/util"
"dearrow-bot/util"
"fmt"
"io"
"os"
Expand Down
2 changes: 1 addition & 1 deletion handlers/commands.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package handlers

import (
"dearrow-thumbnails/internal"
"dearrow-bot/internal"
"log/slog"

"github.com/disgoorg/disgo/discord"
Expand Down
2 changes: 1 addition & 1 deletion handlers/mode.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package handlers

import (
"dearrow-thumbnails/types"
"dearrow-bot/types"

"github.com/disgoorg/disgo/discord"
"github.com/disgoorg/disgo/handler"
Expand Down
7 changes: 4 additions & 3 deletions internal/bot.go
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
package internal

import (
"dearrow-thumbnails/types"
"dearrow-bot/types"
"errors"
"log/slog"
"net/http"

"github.com/disgoorg/snowflake/v2"
"github.com/lmittmann/tint"
"github.com/schollz/jsonstore"
"log/slog"
"net/http"
)

type Bot struct {
Expand Down
8 changes: 4 additions & 4 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ package main

import (
"context"
"dearrow-thumbnails/handlers"
"dearrow-thumbnails/internal"
"dearrow-thumbnails/types"
"dearrow-thumbnails/util"
"dearrow-bot/handlers"
"dearrow-bot/internal"
"dearrow-bot/types"
"dearrow-bot/util"
"fmt"
"io"
"log/slog"
Expand Down

0 comments on commit cb9ab98

Please sign in to comment.