diff --git a/protos/service.proto b/protos/service.proto deleted file mode 100644 index 1d05a0eb72..0000000000 --- a/protos/service.proto +++ /dev/null @@ -1,16 +0,0 @@ -syntax = "proto3"; -message PasswordDetails { - string id = 1; - string password = 2; - string hashValue = 3; - string saltValue = 4; -} -service PasswordService { - rpc RetrievePasswords (Empty) returns (PasswordList) {} - rpc AddNewDetails (PasswordDetails) returns (PasswordDetails) {} - rpc UpdatePasswordDetails (PasswordDetails) returns (PasswordDetails) {} -} -message Empty {} -message PasswordList { - repeated PasswordDetails passwords = 1; -} \ No newline at end of file