evilcorp_secondpilot 2.3.0

A wrapper to the EvilCorp SecondPilot API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use evilcorp_secondpilot;

#[tokio::main]
async fn main() {
    let arg =
        std::env::args()
            .nth(1)
            .expect("Please provide a token");

    println!(
        "{:?}",
        evilcorp_secondpilot::EvilcorpSecondPilotClient::new(arg)
            .get_token()
            .await
            .unwrap(),
    );
}