Some checks failed
Publish / Publish npm package action (push) Failing after 7s
17 lines
235 B
Protocol Buffer
17 lines
235 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package auth.v1;
|
|
|
|
service AuthService {
|
|
rpc SendOtp(SendOtpRequest) returns (SendOtpResponse);
|
|
}
|
|
|
|
message SendOtpRequest {
|
|
string identifier = 1;
|
|
string type = 2;
|
|
}
|
|
|
|
message SendOtpResponse {
|
|
bool ok = 1;
|
|
}
|