diff options
| author | Lizzy Fleckenstein <lizzy@vlhl.dev> | 2026-05-10 16:48:07 +0200 |
|---|---|---|
| committer | Lizzy Fleckenstein <lizzy@vlhl.dev> | 2026-05-10 16:48:07 +0200 |
| commit | 871ef4abac1023d33714d2fda9c54cc63e20a3a5 (patch) | |
| tree | 434144cf5041a8a3d9e014b8a95724fb7d822e4c /azalea-auth/src/auth.rs | |
| parent | 3d452c73c1d53099c8dc2d0e34634bf52262347d (diff) | |
| download | azalea-drasl-871ef4abac1023d33714d2fda9c54cc63e20a3a5.tar.xz | |
support yggdrasil authentication
Diffstat (limited to 'azalea-auth/src/auth.rs')
| -rw-r--r-- | azalea-auth/src/auth.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/azalea-auth/src/auth.rs b/azalea-auth/src/auth.rs index ef084d95..c2b639e9 100644 --- a/azalea-auth/src/auth.rs +++ b/azalea-auth/src/auth.rs @@ -60,6 +60,8 @@ pub enum AuthError { GetMinecraftAuthToken(#[from] MinecraftAuthError), #[error("Error authenticating with Xbox Live: {0}")] GetXboxLiveAuth(#[from] XboxLiveAuthError), + #[error("Error authenticating with Yggdrasil")] + Yggdrasil(#[from] crate::yggdrasil::YggdrasilAuthError), } /// Authenticate with Microsoft. If the data isn't cached, the user will be |
