- syntax = "proto3";
- package user;
- option go_package = "github.com/go-nunu/nunu-layout-advanced/internal/pkg/proto;proto";
- // protoc --go_out=paths=source_relative:. api/v1/chat.proto
- message ReqGetUserInfo{
- string Uid = 1;
- }
- message RespGetUserInfo{
- int32 Code = 1;
- string Msg = 2;
- }
|