1
0
mirror of https://github.com/go-kratos/kratos.git synced 2025-04-04 22:14:43 +02:00
kratos/examples/errors/api/errors.proto
包子 7b41acf241
add examples/errors (#1077)
* addd examples/errors
2021-06-17 17:57:23 +08:00

18 lines
424 B
Protocol Buffer

syntax = "proto3";
package errors;
option go_package = "github.com/go-kratos/kratos/v2/errors;v1";
option java_multiple_files = true;
option java_package = "com.github.kratos.errors";
option objc_class_prefix = "KratosErrors";
import "google/protobuf/descriptor.proto";
extend google.protobuf.EnumOptions {
int32 default_code = 1108;
}
extend google.protobuf.EnumValueOptions {
int32 code = 1109;
}