Skip to content

Commit 949e054

Browse files
committed
feat(apply): add Go instruction and enforcement prompt to apply script
1 parent c6ea1d6 commit 949e054

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

scripts/apply.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ set -euo pipefail
1818
# all=true # Include all technology-specific files
1919
# python=true # Include Python instruction and enforcement prompt
2020
# typescript=true # Include TypeScript instruction and enforcement prompt
21+
# go=true # Include Go instruction and enforcement prompt
2122
# reactjs=true # Include ReactJS instruction and enforcement prompt
2223
# rust=true # Include Rust instruction and enforcement prompt
2324
# terraform=true # Include Terraform instruction and enforcement prompt
@@ -95,7 +96,7 @@ DEFAULT_TEMPLATES=("Makefile.template" "Dockerfile.template" "compose.yaml.templ
9596
DEFAULT_SKILLS=("repository-template")
9697

9798
# All technology switches (for iteration)
98-
ALL_TECHS=("python" "typescript" "reactjs" "rust" "terraform" "tauri" "playwright" "django" "fastapi")
99+
ALL_TECHS=("python" "typescript" "go" "reactjs" "rust" "terraform" "tauri" "playwright" "django" "fastapi")
99100

100101
# ==============================================================================
101102

@@ -108,6 +109,7 @@ function get-tech-instruction() {
108109
case "$1" in
109110
python) echo "python" ;;
110111
typescript) echo "typescript" ;;
112+
go) echo "go" ;;
111113
reactjs) echo "reactjs" ;;
112114
rust) echo "rust" ;;
113115
terraform) echo "terraform" ;;
@@ -137,6 +139,7 @@ function get-tech-prompt() {
137139
case "$1" in
138140
python) echo "enforce.python" ;;
139141
typescript) echo "enforce.typescript" ;;
142+
go) echo "enforce.go" ;;
140143
reactjs) echo "enforce.reactjs" ;;
141144
rust) echo "enforce.rust" ;;
142145
terraform) echo "enforce.terraform" ;;

0 commit comments

Comments
 (0)