Crates.io | qauth |
lib.rs | qauth |
version | 0.1.6 |
source | src |
created_at | 2021-07-13 23:00:49.838987 |
updated_at | 2022-02-13 00:23:39.847435 |
description | Client library for the QuartzAuth API |
homepage | https://auth.quartzinc.space |
repository | https://github.com/Zert3x/QA-Rust |
max_upload_size | |
id | 422492 |
size | 23,835 |
This is the Rust implementation of the client for the QuartzAuth API.
Note, this likely has a lot of non-idiomatic code, as this was originally written when I had begun learning rust. This will change in the future when I have time.
Pull requests are welcome for any bugs you may find!
If you have any questions, please join our discord server
use qauth::client::Client;
fn main() {
let client = Client::new(
String::from("ProgramKey"),
String::from("VariableKey"),
String::from("0.0.1"),
);
let client = client.unwrap();
let resp = client.login(String::from("username"), String::from("password"));
}