chore: migrate to gitea
Some checks failed
golangci-lint / lint (push) Failing after 1m20s
Test / test (push) Failing after 2m15s

This commit is contained in:
2026-01-27 00:40:46 +01:00
parent 1e05874160
commit a9bca767a9
29 changed files with 107 additions and 89 deletions

View File

@@ -1,11 +1,12 @@
package postgresql
import (
"budget/internal/storage/dao"
"budget/internal/utils"
"database/sql"
"fmt"
"gitea.frenchtouch.duckdns.org/kratisto/budget-backend/internal/storage/dao"
"gitea.frenchtouch.duckdns.org/kratisto/budget-backend/internal/utils"
"github.com/lib/pq"
)

View File

@@ -1,12 +1,13 @@
package validators
import (
"budget/internal/storage/model"
"budget/internal/utils"
"fmt"
"regexp"
"strings"
"gitea.frenchtouch.duckdns.org/kratisto/budget-backend/internal/storage/model"
"gitea.frenchtouch.duckdns.org/kratisto/budget-backend/internal/utils"
"gopkg.in/go-playground/validator.v9"
)