diff options
author | Niall Sheridan <nsheridan@gmail.com> | 2018-08-09 23:29:20 +0100 |
---|---|---|
committer | Niall Sheridan <nsheridan@gmail.com> | 2018-08-09 23:43:59 +0100 |
commit | 347c11ec42264c579eb3f19494e4f75ab8bb8f0d (patch) | |
tree | 0171d2a9bcd67e7b9f6a78bbf6af4627e59f5aa1 /proto/signer.proto | |
parent | 9f8f0194a3c21e640a5b917f86bf204c014d730d (diff) |
Remove gRPC
This hasn't been enabled in a while due to gRPC limitations
Diffstat (limited to 'proto/signer.proto')
-rw-r--r-- | proto/signer.proto | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/proto/signer.proto b/proto/signer.proto deleted file mode 100644 index 7770be8..0000000 --- a/proto/signer.proto +++ /dev/null @@ -1,18 +0,0 @@ -syntax = "proto3"; -package proto; - -import "google/protobuf/timestamp.proto"; - -message SignRequest { - bytes key = 1; - google.protobuf.Timestamp valid_until = 2; - string message = 3; -} - -message SignResponse { - bytes cert = 1; -} - -service Signer { - rpc Sign(SignRequest) returns (SignResponse) {} -} |