diff --git a/.gitignore b/.gitignore index 39f334a..4a843d1 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,4 @@ /main /.env /config.json -/monobank-firefly-bot \ No newline at end of file +/monobank-firefly3-bot \ No newline at end of file diff --git a/go.mod b/go.mod index c3ceea6..7394fa6 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module stuzer.link/monobank-firefly-bot +module stuzer.link/monobank-firefly3-bot go 1.22.1 diff --git a/http.go b/http.go index fffe899..c8019a3 100644 --- a/http.go +++ b/http.go @@ -4,7 +4,7 @@ import ( "encoding/json" "io" "net/http" - monobank "stuzer.link/monobank-firefly-bot/monobank/api/webhook/models" + monobank "stuzer.link/monobank-firefly3-bot/monobank/api/webhook/models" ) func readResponseBody(r *http.Request) (monobank.Transaction, error) { diff --git a/webhook.go b/webhook.go index 7bfc501..f631529 100644 --- a/webhook.go +++ b/webhook.go @@ -11,8 +11,8 @@ import ( "os" "slices" "strconv" - "stuzer.link/monobank-firefly-bot/firefly3" - monobank "stuzer.link/monobank-firefly-bot/monobank/api/webhook/models" + "stuzer.link/monobank-firefly3-bot/firefly3" + monobank "stuzer.link/monobank-firefly3-bot/monobank/api/webhook/models" "time" )