add developer session struct

This commit is contained in:
nab138
2026-01-27 10:39:12 -05:00
parent d6f15c2102
commit 0b69a0b238
3 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
use std::sync::Arc;
use crate::auth::apple_account::AppleAccount;
struct DeveloperSession {
apple_account: Arc<AppleAccount>,
}
impl DeveloperSession {
pub fn new(apple_account: Arc<AppleAccount>) -> Self {
DeveloperSession { apple_account }
}
}

1
isideload/src/dev/mod.rs Normal file
View File

@@ -0,0 +1 @@
pub mod developer_session;

View File

@@ -5,6 +5,7 @@ use rootcause::{
pub mod anisette;
pub mod auth;
pub mod dev;
pub mod util;
#[derive(Debug, thiserror::Error)]