Files
gomoku/server/go.mod
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

17 lines
432 B
Modula-2

module github.com/tiennm99/gomoku/server
go 1.23
require (
github.com/awesome-cap/hashmap v0.0.0-20220308123617-f10e2b637d7d
github.com/gorilla/websocket v1.5.3
github.com/json-iterator/go v1.1.12
google.golang.org/protobuf v1.36.11
)
require (
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/stretchr/testify v1.8.0 // indirect
)