add internal rpc file and LookUpName rpc

This commit is contained in:
2024-12-10 10:34:16 +03:30
parent 88aefe7d13
commit 9d8a2d160a
3 changed files with 25 additions and 8 deletions
+9
View File
@@ -0,0 +1,9 @@
syntax = "proto3";
package auth.v1;
import "auth/v1/msg.proto";
service InternalAuthorizationService {
rpc LookUpName(LookUpNameReq) returns (LookUpNameRes) {}
}