You've already forked AstralRinth
forked from didirus/AstralRinth
* initial commit * merge fixes * added sanitizing * linter * Improve sign in UI * simple simple! * bump version --------- Co-authored-by: CodexAdrian <83074853+CodexAdrian@users.noreply.github.com> Co-authored-by: Jai A <jaiagr+gpg@pm.me>
16 lines
304 B
Rust
16 lines
304 B
Rust
pub mod complete;
|
|
pub mod init;
|
|
pub mod refresh;
|
|
mod stages;
|
|
|
|
use serde::Deserialize;
|
|
|
|
const MICROSOFT_CLIENT_ID: &str = "c4502edb-87c6-40cb-b595-64a280cf8906";
|
|
|
|
#[derive(Deserialize)]
|
|
pub struct MicrosoftError {
|
|
pub error: String,
|
|
pub error_description: String,
|
|
pub error_codes: Vec<u64>,
|
|
}
|