SimpleLogin Rs

This crate is a wrapper for the simplelogin.io api.


Details

``` rust let mut client = SimpleLoginClient::new("app.simplelogin.io");

client.token = Some("TOKEN"); ```

```rust // * User Infos * let response = client.account().getuserinfo().await;

// * Get Alias Options * let response = client.alias().options().await;

// * Create Mailbox * let response = client.mailbox().create("mailboxtoadd").await;

// * List Custom Domains * let response = client.custom_domain().list().await;

// * Get Settings * let response = client.setting().get().await; ```


License

Licensed under GPL-3.0