2019-05-24 19:38:29 -05:00
|
|
|
syntax = "proto3";
|
|
|
|
package witProtobuf;
|
|
|
|
|
2019-05-25 04:46:11 -05:00
|
|
|
import "account.proto";
|
|
|
|
|
2019-05-24 19:38:29 -05:00
|
|
|
message Config {
|
2019-05-25 02:11:10 -05:00
|
|
|
string USER = 1;
|
|
|
|
int32 width = 2;
|
|
|
|
int32 height = 3;
|
|
|
|
string hostname = 4;
|
|
|
|
bool debugging = 5;
|
|
|
|
bool debugtable = 6;
|
|
|
|
string filename = 7;
|
2019-05-24 20:31:05 -05:00
|
|
|
repeated Account accounts = 8;
|
2019-05-25 02:11:10 -05:00
|
|
|
int32 counter = 9;
|
|
|
|
int32 errors = 10;
|
|
|
|
int32 crashes = 11;
|
|
|
|
string crash = 12;
|
2019-05-24 19:38:29 -05:00
|
|
|
}
|