1 2 3 4 5 6 7 8 9
package query import "strings" func writeIndent(b *strings.Builder, level int) { for range level { b.WriteByte('\t') } }