fix register
All checks were successful
Build and Test / sonic-transformed (push) Successful in 4m32s
Build and Test / friends (push) Successful in 4m58s
Build and Test / puyopuyo (push) Successful in 5m1s
Build and Test / splatoon (push) Successful in 5m2s
Build and Test / minecraft-wiiu (push) Successful in 5m3s
Build and Test / splatoon-testfire (push) Successful in 5m4s
Build and Test / wii-u-chat (push) Successful in 5m6s
Build and Test / wii-sports-club (push) Successful in 5m13s
Build and Test / mario-tennis (push) Successful in 5m13s
Build and Test / fast-racing-neo (push) Successful in 5m13s
Build and Test / super-mario-maker (push) Successful in 5m39s
All checks were successful
Build and Test / sonic-transformed (push) Successful in 4m32s
Build and Test / friends (push) Successful in 4m58s
Build and Test / puyopuyo (push) Successful in 5m1s
Build and Test / splatoon (push) Successful in 5m2s
Build and Test / minecraft-wiiu (push) Successful in 5m3s
Build and Test / splatoon-testfire (push) Successful in 5m4s
Build and Test / wii-u-chat (push) Successful in 5m6s
Build and Test / wii-sports-club (push) Successful in 5m13s
Build and Test / mario-tennis (push) Successful in 5m13s
Build and Test / fast-racing-neo (push) Successful in 5m13s
Build and Test / super-mario-maker (push) Successful in 5m39s
This commit is contained in:
parent
283717cc25
commit
b2fd9dc555
1 changed files with 17 additions and 1 deletions
|
|
@ -1,4 +1,4 @@
|
|||
use macros::{method_id, rmc_proto};
|
||||
use macros::{RmcSerialize, method_id, rmc_proto};
|
||||
use rnex_core::prudp::station_url::StationUrl;
|
||||
use rnex_core::rmc::response::ErrorCode;
|
||||
use rnex_core::rmc::structures::qresult::QResult;
|
||||
|
|
@ -6,6 +6,22 @@ use rnex_core::rmc::structures::qresult::QResult;
|
|||
use crate::rmc::structures::any::Any;
|
||||
use crate::rmc::structures::data::Data;
|
||||
|
||||
#[derive(RmcSerialize)]
|
||||
#[rmc_struct(0)]
|
||||
struct NintendoLoginData {
|
||||
#[extends]
|
||||
data: Data,
|
||||
token: String,
|
||||
}
|
||||
|
||||
#[derive(RmcSerialize)]
|
||||
#[rmc_struct(0)]
|
||||
struct AccountExtraInfo {
|
||||
#[extends]
|
||||
data: Data,
|
||||
token: String,
|
||||
}
|
||||
|
||||
#[rmc_proto(11)]
|
||||
pub trait Secure {
|
||||
#[method_id(1)]
|
||||
|
|
|
|||
Loading…
Reference in a new issue