WIP update deps, sql builder instead of jet

This commit is contained in:
2025-03-10 10:29:18 -04:00
parent cb3b1a429c
commit 13747c2118
87 changed files with 5208 additions and 2523 deletions

View File

@@ -250,7 +250,7 @@ func Rawf(format string, a ...interface{}) Node {
// Map a slice of anything to a [Group] (which is just a slice of [Node]-s).
func Map[T any](ts []T, cb func(T) Node) Group {
var nodes []Node
nodes := make([]Node, 0, len(ts))
for _, t := range ts {
nodes = append(nodes, cb(t))
}