mirror of
https://github.com/siderolabs/talos.git
synced 2025-10-10 23:21:34 +02:00
This commit adds structprotogen tool which is used to generate proto file from Go structs. Closes #6078. Signed-off-by: Dmitriy Matrenichev <dmitry.matrenichev@siderolabs.com>
14 lines
290 B
Protocol Buffer
Executable File
14 lines
290 B
Protocol Buffer
Executable File
syntax = "proto3";
|
|
|
|
package talos.resource.definitions.time;
|
|
|
|
option go_package = "github.com/talos-systems/talos/pkg/machinery/api/resource/definitions/time";
|
|
|
|
// StatusSpec describes time sync state.
|
|
message StatusSpec {
|
|
bool synced = 1;
|
|
int64 epoch = 2;
|
|
bool sync_disabled = 3;
|
|
}
|
|
|