Changed a package URL
This commit is contained in:
12
app/app.go
12
app/app.go
@ -14,12 +14,12 @@ import (
|
||||
"github.com/uptrace/bun"
|
||||
tele "gopkg.in/telebot.v4"
|
||||
|
||||
"github.com/alex-savin/go-receipt-tracker/bus"
|
||||
"github.com/alex-savin/go-receipt-tracker/config"
|
||||
"github.com/alex-savin/go-receipt-tracker/listeners"
|
||||
"github.com/alex-savin/go-receipt-tracker/models"
|
||||
"github.com/alex-savin/go-receipt-tracker/system"
|
||||
"github.com/alex-savin/go-receipt-tracker/workers"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/bus"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/config"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/listeners"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/models"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/system"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/workers"
|
||||
)
|
||||
|
||||
const (
|
||||
|
@ -7,7 +7,7 @@ import (
|
||||
"sync"
|
||||
"sync/atomic"
|
||||
|
||||
"github.com/alex-savin/go-receipt-tracker/system"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/system"
|
||||
)
|
||||
|
||||
const (
|
||||
|
@ -8,7 +8,7 @@ import (
|
||||
"net/http"
|
||||
"os"
|
||||
|
||||
"github.com/alex-savin/go-receipt-tracker/models"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/models"
|
||||
tele "gopkg.in/telebot.v4"
|
||||
)
|
||||
|
||||
|
@ -6,7 +6,7 @@ import (
|
||||
|
||||
"log/slog"
|
||||
|
||||
"github.com/alex-savin/go-receipt-tracker/config"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/config"
|
||||
)
|
||||
|
||||
// Bus should be created by New().
|
||||
|
@ -1,7 +1,7 @@
|
||||
package bus
|
||||
|
||||
import (
|
||||
"github.com/alex-savin/go-receipt-tracker/models"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/models"
|
||||
tele "gopkg.in/telebot.v4"
|
||||
)
|
||||
|
||||
|
@ -5,8 +5,8 @@ import (
|
||||
"database/sql"
|
||||
"log/slog"
|
||||
|
||||
"github.com/alex-savin/go-receipt-tracker/config"
|
||||
"github.com/alex-savin/go-receipt-tracker/models"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/config"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/models"
|
||||
"github.com/uptrace/bun"
|
||||
"github.com/uptrace/bun/dialect/pgdialect"
|
||||
"github.com/uptrace/bun/driver/pgdriver"
|
||||
|
2
go.mod
2
go.mod
@ -1,4 +1,4 @@
|
||||
module github.com/alex-savin/go-receipt-tracker
|
||||
module git.savin.nyc/alex/go-receipt-tracker
|
||||
|
||||
go 1.23
|
||||
|
||||
|
@ -3,7 +3,7 @@ package debug
|
||||
import (
|
||||
"log/slog"
|
||||
|
||||
app "github.com/alex-savin/go-receipt-tracker/app"
|
||||
app "git.savin.nyc/alex/go-receipt-tracker/app"
|
||||
)
|
||||
|
||||
// Options contains configuration settings for the debug output.
|
||||
|
12
main.go
12
main.go
@ -7,12 +7,12 @@ import (
|
||||
"os/signal"
|
||||
"syscall"
|
||||
|
||||
"github.com/alex-savin/go-receipt-tracker/app"
|
||||
"github.com/alex-savin/go-receipt-tracker/bus"
|
||||
"github.com/alex-savin/go-receipt-tracker/config"
|
||||
"github.com/alex-savin/go-receipt-tracker/database"
|
||||
"github.com/alex-savin/go-receipt-tracker/hooks/debug"
|
||||
"github.com/alex-savin/go-receipt-tracker/workers"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/app"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/bus"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/config"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/database"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/hooks/debug"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/workers"
|
||||
)
|
||||
|
||||
// var log = *slog.Logger
|
||||
|
@ -6,9 +6,9 @@ import (
|
||||
"log/slog"
|
||||
"sync/atomic"
|
||||
|
||||
"github.com/alex-savin/go-receipt-tracker/bus"
|
||||
"github.com/alex-savin/go-receipt-tracker/config"
|
||||
"github.com/alex-savin/go-receipt-tracker/utils"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/bus"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/config"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/utils"
|
||||
"github.com/liushuangls/go-anthropic/v2"
|
||||
)
|
||||
|
||||
|
@ -7,9 +7,9 @@ import (
|
||||
"regexp"
|
||||
"sync/atomic"
|
||||
|
||||
"github.com/alex-savin/go-receipt-tracker/bus"
|
||||
"github.com/alex-savin/go-receipt-tracker/config"
|
||||
"github.com/alex-savin/go-receipt-tracker/utils"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/bus"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/config"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/utils"
|
||||
"github.com/google/generative-ai-go/genai"
|
||||
"google.golang.org/api/option"
|
||||
)
|
||||
|
@ -5,9 +5,9 @@ import (
|
||||
"log/slog"
|
||||
"sync/atomic"
|
||||
|
||||
"github.com/alex-savin/go-receipt-tracker/bus"
|
||||
"github.com/alex-savin/go-receipt-tracker/config"
|
||||
"github.com/alex-savin/go-receipt-tracker/utils"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/bus"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/config"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/utils"
|
||||
"github.com/sashabaranov/go-openai"
|
||||
)
|
||||
|
||||
|
@ -8,9 +8,9 @@ import (
|
||||
"os"
|
||||
"sync/atomic"
|
||||
|
||||
"github.com/alex-savin/go-receipt-tracker/bus"
|
||||
"github.com/alex-savin/go-receipt-tracker/config"
|
||||
"github.com/alex-savin/go-receipt-tracker/utils"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/bus"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/config"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/utils"
|
||||
"github.com/liushuangls/go-anthropic/v2"
|
||||
)
|
||||
|
||||
|
@ -6,8 +6,8 @@ import (
|
||||
"log/slog"
|
||||
"sync/atomic"
|
||||
|
||||
"github.com/alex-savin/go-receipt-tracker/bus"
|
||||
"github.com/alex-savin/go-receipt-tracker/config"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/bus"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/config"
|
||||
"github.com/google/generative-ai-go/genai"
|
||||
"google.golang.org/api/option"
|
||||
)
|
||||
|
@ -5,9 +5,9 @@ import (
|
||||
"log/slog"
|
||||
"sync/atomic"
|
||||
|
||||
"github.com/alex-savin/go-receipt-tracker/bus"
|
||||
"github.com/alex-savin/go-receipt-tracker/config"
|
||||
"github.com/alex-savin/go-receipt-tracker/utils"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/bus"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/config"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/utils"
|
||||
"github.com/sashabaranov/go-openai"
|
||||
)
|
||||
|
||||
|
@ -6,9 +6,9 @@ import (
|
||||
"sync/atomic"
|
||||
"time"
|
||||
|
||||
"github.com/alex-savin/go-receipt-tracker/bus"
|
||||
"github.com/alex-savin/go-receipt-tracker/config"
|
||||
"github.com/alex-savin/go-receipt-tracker/models"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/bus"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/config"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/models"
|
||||
tele "gopkg.in/telebot.v4"
|
||||
)
|
||||
|
||||
|
@ -6,8 +6,8 @@ import (
|
||||
"sync/atomic"
|
||||
"time"
|
||||
|
||||
"github.com/alex-savin/go-receipt-tracker/bus"
|
||||
"github.com/alex-savin/go-receipt-tracker/config"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/bus"
|
||||
"git.savin.nyc/alex/go-receipt-tracker/config"
|
||||
tele "gopkg.in/telebot.v4"
|
||||
)
|
||||
|
||||
|
Reference in New Issue
Block a user