grpc client
All checks were successful
Build and Test / sonic-transformed (push) Successful in 5m59s
Build and Test / wii-u-chat (push) Successful in 6m2s
Build and Test / wii-sports-club (push) Successful in 6m20s
Build and Test / splatoon (push) Successful in 6m21s
Build and Test / fast-racing-neo (push) Successful in 6m21s
Build and Test / minecraft-wiiu (push) Successful in 6m21s
Build and Test / mario-tennis (push) Successful in 6m26s
Build and Test / friends (push) Successful in 6m35s
Build and Test / splatoon-testfire (push) Successful in 6m40s
Build and Test / puyopuyo (push) Successful in 6m46s
Build and Test / super-mario-maker (push) Successful in 8m10s

This commit is contained in:
Maple Nebel 2026-07-06 14:57:29 +02:00
commit 70e74b4e6b

View file

@ -52,7 +52,7 @@ pub struct Client(NexAccountServiceClient<Channel>); //(reqwest::Client);
impl Client { impl Client {
pub async fn new() -> Result<Self> { pub async fn new() -> Result<Self> {
let client = NexAccountServiceClient::connect(NEX_ACCOUNT_URL.as_str()).await?; let client = nex_account::grpc_client().await.unwrap();
Ok(Self(client)) Ok(Self(client))
} }