Nulled Auth

A wrapper for nulled.to's updated authentication system implemented in rust

Example

```rust fn main() { let authkey = String::from("authkey"); let programid = String::from("programid"); let programsecret = String::from("programsecret"); let minimumlikes = 0; let minimumextra = nulledauth::Ranks::Nova; let displaywelcome = false;

let authentication = nulled_auth::Authenticate::new(
    program_id,
    program_secret,
    minimum_likes,
    minimum_extra,
    display_welcome
);

let is_authenticated: (bool, String) = authentication.authenticate(auth_key).await;
let success = is_authenticated.0;
let message = is_authenticated.1; // Message can contain error message

} ```