generated from cloudwego/.github
-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Labels
C-bugThis is a bug-report. Bug-fix PRs use `C-enhancement` instead.This is a bug-report. Bug-fix PRs use `C-enhancement` instead.
Description
Describe the bug
cloudwego/kitex#835
When importing google protobuf files, such as timestamp, those structs don't have fastpb interface, so users cannot compile codes.
To Reproduce
syntax = "proto3";
option go_package = "pbdemo";
import "google/protobuf/timestamp.proto";
package pbdemo;
service ServiceA {
rpc SayHello (Request) returns (Reply) {}
}
message Request {
string name = 1;
google.protobuf.Timestamp date = 4;
}
message Reply {
string message = 1;
}
a631807682, sailucheng and NOS-AEa631807682
Metadata
Metadata
Assignees
Labels
C-bugThis is a bug-report. Bug-fix PRs use `C-enhancement` instead.This is a bug-report. Bug-fix PRs use `C-enhancement` instead.