Files
natpass/code/network/shell.proto
T

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;
}