use TheMovieDB::account::Authentication;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let auth = Authentication::new();
println!("Requesting a new authentication token");
let token_response = auth.token_new().await;
println!("Authentication Token Response: {:#?}", token_response);
Ok(())
}