Skip to content

Commit

Permalink
buf format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhil-024 committed Sep 16, 2024
1 parent 765de27 commit 5c631b5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
syntax = "proto3";
package dream11.oam.provideraccount.v1;

import "dream11/oam/dto/v1/provider_account.proto";

option go_package = "github.com/dream11/odin/proto/gen/go/dream11/oam/provideraccount/v1";
Expand Down
5 changes: 3 additions & 2 deletions proto/dream11/od/dto/v1/environment.proto
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
syntax = "proto3";
package dream11.od.dto.v1;

import "dream11/oam/provideraccount/v1/provider_account.proto";
import "dream11/od/dto/v1/service_task.proto";
import "google/protobuf/timestamp.proto";
import "dream11/oam/provideraccount/v1/provider_account.proto";

option go_package = "github.com/dream11/odin/proto/gen/go/dream11/od/dto/v1";

message Environment {
Expand All @@ -17,7 +18,7 @@ message Environment {
optional string status = 10;
optional google.protobuf.Timestamp auto_deletion_time = 11;
repeated dream11.od.dto.v1.ServiceTask services = 12;
repeated AccountInformation account_information = 13;
repeated AccountInformation account_information = 13;
optional string updated_by = 14;
}

Expand Down
1 change: 0 additions & 1 deletion proto/dream11/od/environment/v1/environment.proto
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,3 @@ message DeleteEnvironmentRequest {
message DeleteEnvironmentResponse {
string message = 1;
}

0 comments on commit 5c631b5

Please sign in to comment.