feat(account): add grpc to communicate with account server

This commit is contained in:
DJMrTV 2025-02-02 00:46:04 +01:00
commit cb6a6f9028
15 changed files with 797 additions and 30 deletions

10
build.rs Normal file
View file

@ -0,0 +1,10 @@
fn main(){
tonic_build::configure()
.build_server(false)
.compile_protos(
&["grpc-protobufs/account/account_service.proto"],
&["grpc-protobufs/account"]
)
.unwrap();
}