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