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,10 +1,11 @@
package ginserver
import (
"budget/internal/utils"
"math/rand"
"time"
"gitea.frenchtouch.duckdns.org/kratisto/budget-backend/internal/utils"
"github.com/gin-gonic/gin"
)

View File

@@ -1,16 +1,17 @@
package ginserver
import (
"budget/handler"
"budget/internal/account"
"budget/internal/expense"
"budget/internal/jointaccount"
"budget/internal/storage/dao/postgresql"
"budget/internal/user"
"budget/middleware"
"net/http"
"time"
"gitea.frenchtouch.duckdns.org/kratisto/budget-backend/handler"
"gitea.frenchtouch.duckdns.org/kratisto/budget-backend/internal/account"
"gitea.frenchtouch.duckdns.org/kratisto/budget-backend/internal/expense"
"gitea.frenchtouch.duckdns.org/kratisto/budget-backend/internal/jointaccount"
"gitea.frenchtouch.duckdns.org/kratisto/budget-backend/internal/storage/dao/postgresql"
"gitea.frenchtouch.duckdns.org/kratisto/budget-backend/internal/user"
"gitea.frenchtouch.duckdns.org/kratisto/budget-backend/middleware"
"github.com/gin-gonic/gin"
"github.com/gin-contrib/cors"