mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 08:58:26 +00:00
Merge branch 'plugin/gRPC' of github.com:ToolJet/ToolJet into plugin/gRPC
This commit is contained in:
commit
329e677153
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