mirror of
https://github.com/lwch/natpass
synced 2025-12-24 12:38:02 +08:00
13 lines
180 B
Protocol Buffer
13 lines
180 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package network;
|
|
option go_package="./;network";
|
|
|
|
message shell_resize {
|
|
uint32 rows = 1;
|
|
uint32 cols = 2;
|
|
}
|
|
|
|
message shell_data {
|
|
bytes data = 1;
|
|
} |