discord_qr_auth/lib.rs
1//! `discord-qr-auth` is a crate that allows you to authenticate a user with Discord using a QR code.
2//!
3//! View the [examples] to see how to use this crate.
4//!
5//! [examples]: https://github.com/safecord/discord-qr-auth/tree/master/examples
6//!
7//! # Installation
8//!
9//! Add the following to your `Cargo.toml` file:
10//!
11//! ```toml
12//! [dependencies]
13//! discord-qr-auth = "0.1.0"
14
15#![doc(html_root_url = "https://docs.rs/discord-qr-auth/*")]
16pub mod core;
17
18pub use self::core::client::Client;