aboutsummaryrefslogtreecommitdiffstats
path: root/protobuf
diff options
context:
space:
mode:
authorterminaldweller <thabogre@gmail.com>2021-11-12 15:08:26 +0000
committerterminaldweller <thabogre@gmail.com>2021-11-12 15:08:26 +0000
commit0c8c603662d84974bfc681509694c27df404e7bf (patch)
treeb70d9d2860ddf5a2474f3ee10f2f8033deeb0e47 /protobuf
parentremoved travis (diff)
downloadhived-0c8c603662d84974bfc681509694c27df404e7bf.tar.gz
hived-0c8c603662d84974bfc681509694c27df404e7bf.zip
restructuring WIP
Diffstat (limited to 'protobuf')
-rw-r--r--protobuf/telegram.proto22
1 files changed, 0 insertions, 22 deletions
diff --git a/protobuf/telegram.proto b/protobuf/telegram.proto
deleted file mode 100644
index 8a7e6be..0000000
--- a/protobuf/telegram.proto
+++ /dev/null
@@ -1,22 +0,0 @@
-syntax= "proto3";
-package hived;
-
-import "google/protobuf/timestamp.proto";
-option go_package ="../protobuf";
-
-message NotificationRequest {
- reserved 4 to 7;
- string notificationText = 1;
- int64 channel_id = 2;
- google.protobuf.Timestamp request_time = 3;
-}
-
-message NotificationResponse {
- reserved 3 to 6;
- string error = 2;
- bool isOK = 1;
-}
-
-service NotificationService {
- rpc Notify(NotificationRequest) returns (NotificationResponse);
-}