mirror of
https://github.com/tiennm99/gomoku.git
synced 2026-05-18 09:25:51 +00:00
c40120d6db
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.
8 lines
242 B
Go
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"
|