refactor: Update SQL queries to explicitly list columns and fix import paths

This commit is contained in:
garionion (aider) 2025-02-28 21:18:41 +01:00 committed by garionion
parent 29ec555090
commit 7cbe2a07d3
4 changed files with 14 additions and 13 deletions

View file

@ -4,7 +4,7 @@ import (
"github.com/labstack/echo/v4"
"go.uber.org/zap"
db "github.com/your-username/your-repo/database/sqlite/generated"
db "github.com/your-username/your-repo/database/sqlite/generated/sqlite"
)
// API holds all API handlers

View file

@ -9,7 +9,7 @@ import (
"github.com/labstack/echo/v4"
"go.uber.org/zap"
db "github.com/your-username/your-repo/database/sqlite/generated"
db "github.com/your-username/your-repo/database/sqlite/generated/sqlite"
)
type StorageHandler struct {