mirror of
https://github.com/tiennm99/gomoku.git
synced 2026-06-03 12:12:16 +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.
17 lines
432 B
Modula-2
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
|
|
)
|