rmcl 0.3.1

A fully featured Minecraft TUI launcher
1
2
3
4
5
6
7
8
9
// auth module: account storage (offline + microsoft) and the oauth device code flow
mod accounts;
mod oauth;

pub use accounts::{
    Account, AccountStore, AccountType, AuthResult, account_store_path, create_offline_account,
    offline_uuid,
};
pub use oauth::{DEVICE_CODE_DISPLAY, DeviceCodeInfo, refresh_and_get_token, start_microsoft_auth};