summaryrefslogtreecommitdiff
path: root/proto
diff options
context:
space:
mode:
authorunitexe <unitexe70@gmail.com>2026-01-14 16:43:19 -0600
committerunitexe <unitexe70@gmail.com>2026-01-14 16:43:37 -0600
commit2ad73c4ea94d42579661dce3074cc075f52e6cc7 (patch)
tree5f50c05d2b4de11fd9c586cf867d9d21acbc5aa0 /proto
Initial commit
Diffstat (limited to 'proto')
-rw-r--r--proto/countah.proto13
1 files changed, 13 insertions, 0 deletions
diff --git a/proto/countah.proto b/proto/countah.proto
new file mode 100644
index 0000000..698c3db
--- /dev/null
+++ b/proto/countah.proto
@@ -0,0 +1,13 @@
+syntax = "proto3";
+
+package unit.countah.v0;
+
+service Countah {
+ rpc Counter (CounterRequest) returns (stream CounterResponse);
+}
+
+message CounterRequest { }
+
+message CounterResponse {
+ fixed64 count = 1;
+}