14 lines
349 B
Protocol Buffer
14 lines
349 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option csharp_namespace = "Aoba.RPC.Account";
|
|
package aoba;
|
|
|
|
import "google/protobuf/empty.proto";
|
|
import "Proto/Types.proto";
|
|
|
|
service AccountRpc {
|
|
rpc RegisterPasskey(google.protobuf.Empty) returns (PasskeyRegistrationCreds);
|
|
rpc CompletePasskeyRegistration(PasskeyPublicKey) returns (google.protobuf.Empty);
|
|
}
|
|
|