Skip to content

Commit fd03aa8

Browse files
committed
chore: refactored go_package
1 parent faf93a4 commit fd03aa8

38 files changed

+38
-38
lines changed

proto/api/v2/auth_gateway_service.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import "auth/v2/auth_service.proto";
66
import "google/api/annotations.proto";
77
import "google/protobuf/empty.proto";
88

9-
option go_package = "github.com/spounge-ai/spounge-protos/gen/go/api/v2;apiv2";
9+
option go_package = "github.com/spounge-ai/spounge-proto/gen/go/api/v2;apiv2";
1010

1111
service AuthGatewayService {
1212
rpc Login(AuthGatewayServiceLoginRequest) returns (AuthGatewayServiceLoginResponse) {

proto/api/v2/dashboard_service.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import "user/v2/user.proto";
99
import "workflow/v2/execution.proto";
1010
import "workflow/v2/workflow.proto";
1111

12-
option go_package = "github.com/spounge-ai/spounge-protos/gen/go/api/v2;apiv2";
12+
option go_package = "github.com/spounge-ai/spounge-proto/gen/go/api/v2;apiv2";
1313

1414
service DashboardService {
1515
rpc GetDashboard(GetDashboardRequest) returns (GetDashboardResponse) {

proto/api/v2/user_gateway_service.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import "google/api/annotations.proto";
66
import "google/protobuf/empty.proto";
77
import "user/v2/user_service.proto"; // Only keeping user_service.proto
88

9-
option go_package = "github.com/spounge-ai/spounge-protos/gen/go/api/v2;apiv2";
9+
option go_package = "github.com/spounge-ai/spounge-proto/gen/go/api/v2;apiv2";
1010

1111
service UserGatewayService {
1212
rpc GetUserProfile(UserGatewayServiceGetUserProfileRequest) returns (UserGatewayServiceGetUserProfileResponse) {

proto/api/v2/workflow_gateway_service.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import "google/api/annotations.proto";
66
import "workflow/v2/execution_service.proto";
77
import "workflow/v2/workflow_service.proto";
88

9-
option go_package = "github.com/spounge-ai/spounge-protos/gen/go/api/v2;apiv2";
9+
option go_package = "github.com/spounge-ai/spounge-proto/gen/go/api/v2;apiv2";
1010

1111
service WorkflowGatewayService {
1212
rpc CreateWorkflow(WorkflowGatewayServiceCreateWorkflowRequest) returns (WorkflowGatewayServiceCreateWorkflowResponse) {

proto/auth/v2/auth_service.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import "common/v2/common.proto";
99
import "google/protobuf/empty.proto";
1010
import "user/v2/user.proto";
1111

12-
option go_package = "github.com/spounge-ai/spounge-protos/gen/go/auth/v2;authv2";
12+
option go_package = "github.com/spounge-ai/spounge-proto/gen/go/auth/v2;authv2";
1313

1414
service AuthService {
1515
rpc Login(LoginRequest) returns (LoginResponse) {}

proto/auth/v2/token.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ package auth.v2;
44

55
import "google/protobuf/timestamp.proto";
66

7-
option go_package = "github.com/spounge-ai/spounge-protos/gen/go/auth/v2;authv2";
7+
option go_package = "github.com/spounge-ai/spounge-proto/gen/go/auth/v2;authv2";
88

99
enum TokenType {
1010
TOKEN_TYPE_UNSPECIFIED = 0;

proto/common/v2/common.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ package common.v2;
44

55
import "google/protobuf/struct.proto";
66

7-
option go_package = "github.com/spounge-ai/spounge-protos/gen/go/common/v2;commonv2";
7+
option go_package = "github.com/spounge-ai/spounge-proto/gen/go/common/v2;commonv2";
88

99
message Status {
1010
int32 code = 1;

proto/iam/v2/api_key.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ package iam.v2;
44

55
import "google/protobuf/timestamp.proto";
66

7-
option go_package = "github.com/spounge-ai/spounge-protos/gen/go/iam/v2;iamv2";
7+
option go_package = "github.com/spounge-ai/spounge-proto/gen/go/iam/v2;iamv2";
88

99
message APIKey {
1010
string id = 1;

proto/iam/v2/managed_secret.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ package iam.v2;
55
import "google/protobuf/timestamp.proto";
66
import "google/protobuf/struct.proto";
77

8-
option go_package = "github.com/spounge-ai/spounge-protos/gen/go/iam/v2;iamv2";
8+
option go_package = "github.com/spounge-ai/spounge-proto/gen/go/iam/v2;iamv2";
99

1010
enum ManagedSecretType {
1111
MANAGED_SECRET_TYPE_UNSPECIFIED = 0;

proto/llm/v2/llm.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ package llm.v2;
55
import "common/v2/common.proto";
66
import "google/protobuf/struct.proto";
77

8-
option go_package = "github.com/spounge-ai/spounge-protos/gen/go/llm/v2;llmv2";
8+
option go_package = "github.com/spounge-ai/spounge-proto/gen/go/llm/v2;llmv2";
99

1010
enum Provider {
1111
PROVIDER_UNSPECIFIED = 0;

0 commit comments

Comments
 (0)