hackclub_auth_api 0.0.8

a crate to interact with hackclubs oauth api, its unoficial :p
Documentation
1
2
3
4
5
6
7
8
9
use std::fs;

fn main() {
    let path = "hca.toml";
    if fs::metadata(path).is_err() {
        panic!("Missing required config file: {}", path);
    }
    println!("cargo:rerun-if-changed={}", path);
}