20 lines
847 B
Protocol Buffer
20 lines
847 B
Protocol Buffer
// Copyright 2025 WIT.COM Inc Licensed GPL 3.0
|
|
|
|
syntax = "proto3";
|
|
|
|
package forgepb;
|
|
|
|
import "google/protobuf/timestamp.proto"; // Import the well-known type for Timestamp
|
|
|
|
message ToolkitConfig { //
|
|
string plugin = 1; // 'gocui', 'andlabs', etc
|
|
string name = 2; // variable name 'fullscreen'
|
|
string value = 3; // value "true"
|
|
}
|
|
|
|
message ToolkitConfigs { // `autogenpb:marshal` `autogenpb:nomutex`
|
|
string uuid = 1; // `autogenpb:uuid:d7886d47-a3b9-43b9-b0f6-17074a9844e6`
|
|
string version = 2; // `autogenpb:version:v0.0.1`
|
|
repeated ToolkitConfig ToolkitConfigs = 3;
|
|
}
|