blob: 98032238bb8299bf913150d755445c101a4a5dde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Copyright 2025 WIT.COM Inc Licensed GPL 3.0
syntax = "proto3";
package config;
import "google/protobuf/timestamp.proto"; // Import the well-known type for Timestamp
message Config { //
string key = 1; // config key name `autogenpb:unique` `autogenpb:sort`
string value = 2; // config value name
}
message Configs { // `autogenpb:marshal` `autogenpb:nomutex`
string uuid = 1; // `autogenpb:uuid:3135d0f9-82a9-40b6-8aa1-b683ebe7bedd`
string version = 2; // `autogenpb:version:v0.0.2 go.wit.com/lib/config`
repeated Config configs = 3;
string filename = 4; // can store where the filename is so that saves can be automated
}
|