update dockerfile + wip passkey implementation

This commit is contained in:
2026-03-02 17:07:30 -05:00
parent 511e62b58c
commit 9e09110b16
12 changed files with 497 additions and 427 deletions

View File

@@ -0,0 +1,13 @@
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);
}