Merge pull request 'grpc client' (#43) from friends/3ds into v0
All checks were successful
Build and Test / sonic-transformed (push) Successful in 7m31s
Build and Test / wii-u-chat (push) Successful in 7m42s
Build and Test / puyopuyo (push) Successful in 7m42s
Build and Test / wii-sports-club (push) Successful in 7m43s
Build and Test / mario-tennis (push) Successful in 7m47s
Build and Test / splatoon (push) Successful in 7m48s
Build and Test / splatoon-testfire (push) Successful in 7m49s
Build and Test / fast-racing-neo (push) Successful in 7m50s
Build and Test / minecraft-wiiu (push) Successful in 7m50s
Build and Test / friends (push) Successful in 3m26s
Build and Test / super-mario-maker (push) Successful in 4m28s

Reviewed-on: #43
This commit is contained in:
rusticmaple 2026-07-06 14:58:20 +02:00
commit 82595e810c

View file

@ -52,7 +52,7 @@ pub struct Client(NexAccountServiceClient<Channel>); //(reqwest::Client);
impl Client {
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))
}