mirror of
https://tangled.org/tranquil.farm/tranquil-pds
synced 2026-09-04 17:26:56 +00:00
18 lines
619 B
Rust
18 lines
619 B
Rust
mod delete;
|
|
mod email;
|
|
mod info;
|
|
mod profile;
|
|
mod update;
|
|
|
|
pub use delete::{delete_account, DeleteAccountInput};
|
|
pub use email::{send_email, SendEmailInput, SendEmailOutput};
|
|
pub use info::{
|
|
get_account_info, get_account_infos, AccountInfo, GetAccountInfoParams, GetAccountInfosOutput,
|
|
GetAccountInfosParams,
|
|
};
|
|
pub use profile::{create_profile, create_record_admin, CreateProfileInput, CreateProfileOutput, CreateRecordAdminInput};
|
|
pub use update::{
|
|
update_account_email, update_account_handle, update_account_password, UpdateAccountEmailInput,
|
|
UpdateAccountHandleInput, UpdateAccountPasswordInput,
|
|
};
|