diff --git a/app/app.go b/app/app.go index e37efd5..c452056 100644 --- a/app/app.go +++ b/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 ( diff --git a/app/hooks.go b/app/hooks.go index 826de75..9e2add6 100644 --- a/app/hooks.go +++ b/app/hooks.go @@ -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 ( diff --git a/app/processor.go b/app/processor.go index a797e0c..3eac0c8 100644 --- a/app/processor.go +++ b/app/processor.go @@ -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" ) diff --git a/bus/bus.go b/bus/bus.go index 8900bf5..00e1365 100644 --- a/bus/bus.go +++ b/bus/bus.go @@ -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(). diff --git a/bus/messages.go b/bus/messages.go index 257923f..d11bdda 100644 --- a/bus/messages.go +++ b/bus/messages.go @@ -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" ) diff --git a/database/database.go b/database/database.go index 344cf21..3ca3494 100644 --- a/database/database.go +++ b/database/database.go @@ -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" diff --git a/go.mod b/go.mod index 1aedeff..2b80906 100644 --- a/go.mod +++ b/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 diff --git a/hooks/debug/debug.go b/hooks/debug/debug.go index e5a78d5..03ecac9 100644 --- a/hooks/debug/debug.go +++ b/hooks/debug/debug.go @@ -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. diff --git a/main.go b/main.go index 9aa1ed8..2335d6c 100644 --- a/main.go +++ b/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 diff --git a/workers/claude.go b/workers/claude.go index 2f97031..a865c7a 100644 --- a/workers/claude.go +++ b/workers/claude.go @@ -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" ) diff --git a/workers/gemini.go b/workers/gemini.go index 06e395e..6bab176 100644 --- a/workers/gemini.go +++ b/workers/gemini.go @@ -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" ) diff --git a/workers/openai.go b/workers/openai.go index 47c91b0..794d74d 100644 --- a/workers/openai.go +++ b/workers/openai.go @@ -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" ) diff --git a/workers/parser/claude.go b/workers/parser/claude.go index e5810f6..4db4a55 100644 --- a/workers/parser/claude.go +++ b/workers/parser/claude.go @@ -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" ) diff --git a/workers/parser/gemini.go b/workers/parser/gemini.go index 75e040e..a741774 100644 --- a/workers/parser/gemini.go +++ b/workers/parser/gemini.go @@ -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" ) diff --git a/workers/parser/openai.go b/workers/parser/openai.go index 5a6b146..231b956 100644 --- a/workers/parser/openai.go +++ b/workers/parser/openai.go @@ -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" ) diff --git a/workers/telegram.go b/workers/telegram.go index 13e9c0d..10d4ff8 100644 --- a/workers/telegram.go +++ b/workers/telegram.go @@ -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" ) diff --git a/workers/telegram/telegram.go b/workers/telegram/telegram.go index 6efbaac..584895e 100644 --- a/workers/telegram/telegram.go +++ b/workers/telegram/telegram.go @@ -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" )