this repo has no description
1mod delete;
2mod email;
3mod info;
4mod profile;
5mod update;
6
7pub use delete::{delete_account, DeleteAccountInput};
8pub use email::{send_email, SendEmailInput, SendEmailOutput};
9pub use info::{
10 get_account_info, get_account_infos, AccountInfo, GetAccountInfoParams, GetAccountInfosOutput,
11 GetAccountInfosParams,
12};
13pub use profile::{create_profile, create_record_admin, CreateProfileInput, CreateProfileOutput, CreateRecordAdminInput};
14pub use update::{
15 update_account_email, update_account_handle, update_account_password, UpdateAccountEmailInput,
16 UpdateAccountHandleInput, UpdateAccountPasswordInput,
17};