From af3c82518c79b711123caf718549491cb818caf1 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Thu, 8 Jan 2026 23:30:56 +0000 Subject: [PATCH] Change go package name --- scripts/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build.sh b/scripts/build.sh index c94fe68..7417f7e 100644 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -18,7 +18,7 @@ for file in $FILES; do npx --yes json-schema-to-typescript "$file" > "gen/ts/${clean_name}.ts" # Generate Go - go-jsonschema -p backend_data_contracts "$file" > "gen/go/models/${clean_name}.go" + go-jsonschema -p contracts "$file" > "gen/go/models/${clean_name}.go" done echo "✅ Generated single TS package in gen/ts"