mirror of
https://github.com/lwch/natpass.git
synced 2024-04-21 12:41:54 +00:00
23 lines
314 B
Protocol Buffer
23 lines
314 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package network;
|
|
option go_package="./;network";
|
|
|
|
message shell_create {
|
|
string name = 1;
|
|
string exec = 2;
|
|
}
|
|
|
|
message shell_created {
|
|
bool ok = 1;
|
|
string msg = 2;
|
|
}
|
|
|
|
message shell_resize {
|
|
uint32 rows = 1;
|
|
uint32 cols = 2;
|
|
}
|
|
|
|
message shell_data {
|
|
bytes data = 1;
|
|
} |