20 lines
371 B
Protocol Buffer
20 lines
371 B
Protocol Buffer
syntax = "proto3";
|
|
package witProtobuf;
|
|
|
|
import "account.proto";
|
|
|
|
message Config {
|
|
string USER = 1;
|
|
int32 width = 2;
|
|
int32 height = 3;
|
|
string hostname = 4;
|
|
bool debugging = 5;
|
|
bool debugtable = 6;
|
|
string filename = 7;
|
|
repeated Account accounts = 8;
|
|
int32 counter = 9;
|
|
int32 errors = 10;
|
|
int32 crashes = 11;
|
|
string crash = 12;
|
|
}
|