Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion api/v1/service_manage/configrelease.proto
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ syntax = "proto3";
package v1;

import "google/protobuf/wrappers.proto";
import "service.proto";
import "polaris_service.proto";
import "circuitbreaker.proto";

option go_package = "github.com/polarismesh/specification/source/go/api/v1/service_manage";
Expand Down
2 changes: 1 addition & 1 deletion api/v1/service_manage/grpcapi.proto
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ syntax = "proto3";
package v1;

import "client.proto";
import "service.proto";
import "polaris_service.proto";
import "request.proto";
import "response.proto";
import "heartbeat.proto";
Expand Down
2 changes: 1 addition & 1 deletion api/v1/service_manage/heartbeat.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ syntax = "proto3";

package v1;

import "service.proto";
import "polaris_service.proto";

option go_package = "github.com/polarismesh/specification/source/go/api/v1/service_manage";
option java_package = "com.tencent.polaris.specification.api.v1.service.manage";
Expand Down
2 changes: 1 addition & 1 deletion api/v1/service_manage/request.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ syntax = "proto3";

package v1;

import "service.proto";
import "polaris_service.proto";

option go_package = "github.com/polarismesh/specification/source/go/api/v1/service_manage";
option java_package = "com.tencent.polaris.specification.api.v1.service.manage";
Expand Down
2 changes: 1 addition & 1 deletion api/v1/service_manage/response.proto
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package v1;
import "google/protobuf/wrappers.proto";
import "google/protobuf/any.proto";
import "namespace.proto";
import "service.proto";
import "polaris_service.proto";
import "routing.proto";
import "ratelimit.proto";
import "circuitbreaker.proto";
Expand Down
7 changes: 4 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
module github.com/polarismesh/specification
module github.com/lendsee/polarismesh-specification
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

为什么这个要改动


go 1.19

require (
github.com/golang/protobuf v1.5.2
golang.org/x/net v0.2.0
github.com/polarismesh/specification v1.5.5-alpha.1
google.golang.org/grpc v1.51.0
google.golang.org/protobuf v1.28.1
)

require (
github.com/golang/protobuf v1.5.2 // indirect
golang.org/x/net v0.2.0 // indirect
golang.org/x/sys v0.2.0 // indirect
golang.org/x/text v0.4.0 // indirect
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMyw
github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/google/go-cmp v0.5.6 h1:BKbKCqvP6I+rmFHt06ZmyQtvB8xAkWdhFyr0ZUNZcxQ=
github.com/polarismesh/specification v1.5.5-alpha.1 h1:lGLaj+I6iD25F0FuQnR83sR+1SJ8KqykS0vCnGx2ZAQ=
github.com/polarismesh/specification v1.5.5-alpha.1/go.mod h1:rDvMMtl5qebPmqiBLNa5Ps0XtwkP31ZLirbH4kXA0YU=
github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
Expand Down
72 changes: 36 additions & 36 deletions source/go/api/v1/service_manage/configrelease.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading