summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-13 20:35:17 -0600
committerJeff Carr <[email protected]>2025-02-13 20:35:17 -0600
commitb97dace40e481e672d438f597b3ecac29ec9eb40 (patch)
tree4fea7325e48d76b085de6e0755d922d1f334e489
parentede7c71fc73276cd58e1a84138fdfc779609a6f3 (diff)
widget proto moved to guipb
-rw-r--r--widget.proto39
1 files changed, 0 insertions, 39 deletions
diff --git a/widget.proto b/widget.proto
deleted file mode 100644
index 25265a7..0000000
--- a/widget.proto
+++ /dev/null
@@ -1,39 +0,0 @@
-syntax = "proto3";
-
-// playing around with ideas here
-
-package main;
-
-import "google/protobuf/timestamp.proto"; // Import the well-known type for Timestamp
-import "google/protobuf/any.proto"; // Import 'Any'
-
-
-message Size {
- int64 width = 1;
- int64 height = 2;
-}
-
-message Location {
- int64 x = 1;
- int64 y = 2;
-}
-
-message Tree {
- Widget parent = 1;
- repeated Widget children = 2;
-}
-
-message Widget {
- int64 id = 1;
- string name = 2;
- Size size = 3;
- Location location = 4;
- string color = 5;
- google.protobuf.Any TK = 6;
-}
-
-message Widgets {
- string uuid = 1; // `autogenpb:uuid:0331fcd7-3c8c-43e4-be1b-77db6a6bc58c`
- string version = 2; // `autogenpb:version:v1`
- repeated Widget Widgets = 3;
-}