feat: extract dashboard
All checks were successful
Build and Push Docker Image / Build-And-Push-Docker-Image (push) Successful in 1m19s

This commit is contained in:
2025-12-26 07:11:39 +01:00
parent 5e563f2c59
commit c927d917ec
9 changed files with 55 additions and 55 deletions

View File

@@ -5,7 +5,6 @@ import (
"spend-sparrow/internal/auth_types"
"spend-sparrow/internal/authentication"
"spend-sparrow/internal/core"
"spend-sparrow/internal/db"
"testing"
"time"
@@ -29,7 +28,7 @@ func setupDb(t *testing.T) *sqlx.DB {
}
})
err = db.RunMigrations(context.Background(), d, "../")
err = core.RunMigrations(context.Background(), d, "../")
if err != nil {
t.Fatalf("Error running migrations: %v", err)
}