rfesi 0.50.0

Rust API for EVE Online's ESI
Documentation
use log::info;
use rfesi::prelude::*;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    std::env::set_var("RUST_LOG", "info");
    pretty_env_logger::init();

    let esi = EsiBuilder::new()
        .user_agent("github.com/celeo/rfesi :: example :: auth_fresh")
        .client_id("abc")
        .callback_url("http://localhost:5000/esi/callback")
        .enable_application_authentication(true)
        .scope("g h i")
        .build()?;
    info!(
        "Send your users to {}",
        esi.get_authorize_url()?.authorization_url
    );

    Ok(())
}