Create comprehensive documentation for future Claude Code instances working in this repository, including: - Development commands for testing, building, and code quality - Core architecture overview of the SQL query builder system - Directory structure and component explanations - Testing patterns and conventions - Key dependencies and their purposes 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
9 lines
177 B
Go
Executable File
9 lines
177 B
Go
Executable File
package schema
|
|
|
|
func PrefixArray(prefix string, values []string) (items []string) {
|
|
for _, value := range values {
|
|
items = append(items, prefix+" "+value)
|
|
}
|
|
return items
|
|
}
|