feat(nex-servers): add nex token get stub and start working on grpc server

This commit is contained in:
DJMrTV 2025-03-07 15:14:43 +01:00
commit 02c46fca1d
10 changed files with 347 additions and 12 deletions

11
build.rs Normal file
View file

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