summaryrefslogtreecommitdiff
path: root/proto
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-06-18 16:34:43 -0600
committermo khan <mo@mokhan.ca>2025-06-18 16:34:43 -0600
commitf7d1396c5634e14a7aafdd5c8f6e644aca6e5fb0 (patch)
tree161c6b656d3366d64109bc85c637a7a7f6f7e679 /proto
parent68558decefd9562a5c8ee3ffa9c197b244e65321 (diff)
refactor: remove all the tutorial code
Diffstat (limited to 'proto')
-rw-r--r--proto/ability.proto16
-rw-r--r--proto/helloworld.proto14
2 files changed, 0 insertions, 30 deletions
diff --git a/proto/ability.proto b/proto/ability.proto
deleted file mode 100644
index ccef946..0000000
--- a/proto/ability.proto
+++ /dev/null
@@ -1,16 +0,0 @@
-syntax = "proto3";
-package authz.rpc;
-
-service Ability {
- rpc Allowed (AllowRequest) returns (AllowReply) {}
-}
-
-message AllowRequest {
- string subject = 1;
- string permission = 2;
- string resource = 3;
-}
-
-message AllowReply {
- bool result = 1;
-}
diff --git a/proto/helloworld.proto b/proto/helloworld.proto
deleted file mode 100644
index 949b755..0000000
--- a/proto/helloworld.proto
+++ /dev/null
@@ -1,14 +0,0 @@
-syntax = "proto3";
-package helloworld;
-
-service Greeter {
- rpc SayHello (HelloRequest) returns (HelloReply);
-}
-
-message HelloRequest {
- string name = 1;
-}
-
-message HelloReply {
- string message = 1;
-}