Skip to content

Commit

Permalink
feat: manual proxy configuration, closes #58
Browse files Browse the repository at this point in the history
Also includes some tests refactoring to move towards better coverage and simpler unit tests #63.
  • Loading branch information
YuukanOO committed Dec 10, 2024
1 parent 7aed12b commit c80c10e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/storage/sqlite/builder/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ func (q *queryBuilder[T]) All(

defer rows.Close()

var results []T
results := make([]T, 0)

// Instantiates needed stuff for data loaders
mappings := make([]keysMapping, len(loaders))
Expand Down

0 comments on commit c80c10e

Please sign in to comment.