Added go text template writier #1

Merged
warkanum merged 3 commits from templates into master 2026-01-03 19:05:53 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 4688dbe7f1 - Show all commits

View File

@@ -36,7 +36,7 @@ COMPOSE_CMD := $(shell \
all: lint test build ## Run linting, tests, and build
build: ## Build the binary
build: deps ## Build the binary
@echo "Building $(BINARY_NAME)..."
@mkdir -p $(BUILD_DIR)
$(GOBUILD) -o $(BUILD_DIR)/$(BINARY_NAME) ./cmd/relspec

2
go.mod
View File

@@ -8,6 +8,7 @@ require (
github.com/spf13/cobra v1.10.2
github.com/stretchr/testify v1.11.1
github.com/uptrace/bun v1.2.16
golang.org/x/text v0.28.0
gopkg.in/yaml.v3 v3.0.1
)
@@ -27,5 +28,4 @@ require (
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
golang.org/x/crypto v0.41.0 // indirect
golang.org/x/sys v0.38.0 // indirect
golang.org/x/text v0.28.0 // indirect
)