mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 08:58:26 +00:00
Delete service.proto
This commit is contained in:
parent
839183d607
commit
29d14a685d
1 changed files with 0 additions and 16 deletions
|
|
@ -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;
|
||||
}
|
||||
Loading…
Reference in a new issue