Files
AobaV2/AobaServer/Proto/Metrics.proto
Amatsugu cc64675c9c metrics service
fixes to auth info
2025-07-05 23:55:40 -04:00

12 lines
232 B
Protocol Buffer

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