fix: Standardize SQL column names and import paths across project

This commit is contained in:
garionion (aider) 2025-02-28 21:19:27 +01:00 committed by garionion
parent 7cbe2a07d3
commit e3d8f9e8ee
4 changed files with 17 additions and 17 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/sqlite"
db "github.com/your-username/your-repo/database/sqlite/generated"
)
// 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/sqlite"
db "github.com/your-username/your-repo/database/sqlite/generated"
)
type StorageHandler struct {