Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/flipperdevices/flipperzero-protobuf.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnna Prosvetova <anna@prosvetova.me>2021-10-26 17:54:57 +0300
committerGitHub <noreply@github.com>2021-10-26 17:54:57 +0300
commit9debcee51c15c0ab55e561d699abd49fd3af452b (patch)
tree36e1376e61e0cc3a76e7f828eb3b3bad4215c9f2
parent021ba48abb64d25c7094da13b752fe37d4bf6007 (diff)
Add go_package option (#7)
-rw-r--r--application.proto1
-rw-r--r--flipper.proto1
-rw-r--r--status.proto1
-rw-r--r--storage.proto1
4 files changed, 4 insertions, 0 deletions
diff --git a/application.proto b/application.proto
index 622f197..24d0e71 100644
--- a/application.proto
+++ b/application.proto
@@ -2,6 +2,7 @@ syntax = "proto3";
package PB_App;
option java_package = "com.flipperdevices.protobuf.app";
+option go_package = "github.com/flipperdevices/go-flipper/proto/app";
message Start {
string name = 1;
diff --git a/flipper.proto b/flipper.proto
index 29836a5..5425d33 100644
--- a/flipper.proto
+++ b/flipper.proto
@@ -5,6 +5,7 @@ import "application.proto";
package PB;
option java_package = "com.flipperdevices.protobuf";
+option go_package = "github.com/flipperdevices/go-flipper/proto";
enum CommandStatus {
OK = 0;
diff --git a/status.proto b/status.proto
index 12363d2..0b070f1 100644
--- a/status.proto
+++ b/status.proto
@@ -2,6 +2,7 @@ syntax = "proto3";
package PB_Status;
option java_package = "com.flipperdevices.protobuf.status";
+option go_package = "github.com/flipperdevices/go-flipper/proto/status";
message PingRequest {
}
diff --git a/storage.proto b/storage.proto
index d45377d..852cc70 100644
--- a/storage.proto
+++ b/storage.proto
@@ -2,6 +2,7 @@ syntax = "proto3";
package PB_Storage;
option java_package = "com.flipperdevices.protobuf.storage";
+option go_package = "github.com/flipperdevices/go-flipper/proto/storage";
message File {
enum FileType {