Files
gomoku/server/tools.go
T
tiennm99 c40120d6db feat(server): add protoc-gen-go toolchain and generated proto code
Adds tools.go to pin protoc-gen-go, updates go.mod/go.sum with
google.golang.org/protobuf, generates request.pb.go and response.pb.go,
and adds a make proto target to server/Makefile for regen.
2026-04-11 12:40:53 +07:00

8 lines
242 B
Go

//go:build tools
// Package tools pins build-time tool dependencies so `go install` picks up
// the correct versions without polluting the main module's runtime imports.
package tools
import _ "google.golang.org/protobuf/cmd/protoc-gen-go"