Go to file
Mageas 453c8420fd
Update: remove the dbg in the request, bump to 0.1.2
2022-11-11 18:42:51 +01:00
src Update: remove the dbg in the request, bump to 0.1.2 2022-11-11 18:42:51 +01:00
.gitignore Initial commit 2022-11-05 13:52:58 +01:00
Cargo.toml Update: remove the dbg in the request, bump to 0.1.2 2022-11-11 18:42:51 +01:00
LICENSE Update: add LICENSE and README.md 2022-11-10 14:19:33 +01:00
README.md Update: add LICENSE and README.md 2022-11-10 14:19:33 +01:00

README.md

SimpleLogin Rs

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


Details

  • Create the client
let mut client = SimpleLoginClient::new("app.simplelogin.io");

client.token = Some("TOKEN");
  • Make requests
// ** User Infos **
let response = client.account().get_user_info().await;

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

// ** Create Mailbox **
let response = client.mailbox().create("mailbox_to_add").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