metrics service

fixes to auth info
This commit is contained in:
2025-07-05 23:55:40 -04:00
parent 5a34860fca
commit cc64675c9c
8 changed files with 104 additions and 15 deletions

View File

@@ -0,0 +1,12 @@
syntax = "proto3";
option csharp_namespace = "Aoba.RPC.Metrics";
package aoba.Metrics;
import "Proto/Auth.proto";
import "google/protobuf/empty.proto";
service Metrics {
rpc GetToken(google.protobuf.Empty) returns (Auth.Jwt);
}