Browse Source

container

master
otto 1 year ago
parent
commit
05bb71e90b
  1. 746
      container/v1/container.pb.go
  2. 9
      container/v1/container.proto

746
container/v1/container.pb.go

File diff suppressed because it is too large Load Diff

9
container/v1/container.proto

@ -92,6 +92,12 @@ message Ports {
int32 server_port = 3;
}
message Params {
int64 room_id = 1;
int64 scene_id = 2;
}
message Image {
int64 id = 1;
@ -113,7 +119,8 @@ message ContainerData {
string ip = 6;
int32 status = 7;
repeated Ports ports = 8;
google.protobuf.Timestamp created_at= 9;
Params params = 9;
google.protobuf.Timestamp created_at= 10;
}
message MqInfo {

Loading…
Cancel
Save