28 lines
688 B
Protocol Buffer
28 lines
688 B
Protocol Buffer
syntax = "proto3";
|
|
package guipb;
|
|
|
|
import "account.proto";
|
|
|
|
message Config {
|
|
string USER = 1;
|
|
int32 width = 2;
|
|
int32 height = 3;
|
|
string hostname = 4;
|
|
bool debug = 5;
|
|
bool debugtable = 6;
|
|
string filename = 7;
|
|
repeated Account accounts = 8;
|
|
int32 counter = 9;
|
|
int32 errors = 10;
|
|
int32 crashes = 11;
|
|
string crash = 12;
|
|
string IPv6 = 13;
|
|
|
|
// variables relating to the build
|
|
bool dirty = 14; // if the build was 'dirty'
|
|
string gitref = 15; // git rev-list -1 HEAD
|
|
string version = 16; // the VERSION file
|
|
int64 builddate = 17; // the build time in seconds since epoch
|
|
string goversion = 18; // the version of go used to build
|
|
}
|