contracts/proto/auth.proto
Sergey Krylov c5aedf698f
Some checks failed
Publish / Publish npm package action (push) Failing after 7s
feat: add auth contract
2026-01-21 05:15:53 +03:00

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;
}