You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
571 B
19 lines
571 B
6 days ago
|
tcp-protobuf-app/
|
||
|
├── proto/
|
||
|
│ └── service/
|
||
|
│ └── v1/
|
||
|
│ └── service.proto # Схема Protobuf
|
||
|
├── buf.yaml # Конфігурація Buf
|
||
|
├── buf.gen.yaml # Налаштування генерації
|
||
|
├── server/
|
||
|
│ └── main.go
|
||
|
└── client/
|
||
|
└── main.go
|
||
|
|
||
|
|
||
|
go install github.com/bufbuild/buf/cmd/buf@latest
|
||
|
|
||
|
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
|
||
|
|
||
|
|
||
|
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
|