From 073add20d7d748c40775e2e57a14e24ac12043d3 Mon Sep 17 00:00:00 2001 From: thesai <1021828630@qq.com> Date: Fri, 2 Feb 2024 16:07:57 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=AB=9E=E8=B5=9Bproto?= =?UTF-8?q?=E5=AE=9A=E4=B9=890.1=E7=89=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/scene.proto | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/scene.proto diff --git a/src/scene.proto b/src/scene.proto new file mode 100644 index 0000000..91ce455 --- /dev/null +++ b/src/scene.proto @@ -0,0 +1,17 @@ +syntax = "proto3"; +package task; + +message Scene { + string url = 1; + StorageSimulation storageSimulation = 2; + enum Type { + Unknown = 0; + Local = 1; + Link = 2; + } +} + +message StorageSimulation { + +} +