refactor: Update SQL queries to explicitly list columns and fix import paths
This commit is contained in:
parent
29ec555090
commit
7cbe2a07d3
4 changed files with 14 additions and 13 deletions
|
@ -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
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue