Skip to content

Commit 71e76c3

Browse files
rustyconoverclaude
andcommitted
codegen(go_schemas): emit standardized single-line copyright header
Match vgi-go's standardized header (drop the © and SPDX Apache-2.0 lines) so regenerating protocol_schemas.go stays in sync with the repo convention. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 496aba4 commit 71e76c3

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

vgi/codegen/go_schemas.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,7 @@ def emit(out: TextIO) -> None:
170170
schemas = collect_schemas()
171171

172172
body = io.StringIO()
173-
body.write("// © Copyright 2025-2026, Query.Farm LLC - https://query.farm\n")
174-
body.write("// SPDX-License-Identifier: Apache-2.0\n")
173+
body.write("// Copyright 2025, 2026 Query Farm LLC - https://query.farm\n")
175174
body.write("\n")
176175
body.write("package generated\n")
177176
body.write("\n")

0 commit comments

Comments
 (0)