summaryrefslogtreecommitdiff
path: root/experiments.proto
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-07 04:41:25 -0600
committerJeff Carr <[email protected]>2025-02-07 04:41:25 -0600
commitddc0410126f6da0165f48f9023526dc47de52e5b (patch)
tree040876954623f8f98b5affcbe2d827f1811975db /experiments.proto
parent91602683263cf9bdde1faaad22ba46b4f006a562 (diff)
fix proto files to conform with autogenpbv0.2.20v0.2.19
Diffstat (limited to 'experiments.proto')
-rw-r--r--experiments.proto21
1 files changed, 0 insertions, 21 deletions
diff --git a/experiments.proto b/experiments.proto
deleted file mode 100644
index a489952..0000000
--- a/experiments.proto
+++ /dev/null
@@ -1,21 +0,0 @@
-syntax = "proto3";
-package virtbuf;
-
-import "google/protobuf/timestamp.proto"; // Import the well-known type for Timestamp
-import "google/protobuf/any.proto"; // Import the well-known type for Timestamp
-
-// global settings for autogenpb `autogenpb:no-sort` `autogenpb:no-marshal`
-
-message WhatsThis {
- // is it possible to have custom formatting in JSON and TEXT marshal/unmarshal ?
- WhatInfo humantest = 1;
-
- google.protobuf.Timestamp end = 2; // end time
- google.protobuf.Any orig_val = 3; // original value
- google.protobuf.Any new_val = 4; // new value
-}
-
-// this is for exerimenting
-message WhatInfo {
- int64 capacity = 1; // Stores the storage capacity in bytes.
-}