myc_http_tools/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
pub mod dtos;
pub mod functions;
pub mod middleware;
pub mod models;
pub mod providers;
pub mod responses;
pub mod settings;
pub mod utils;
pub mod wrappers;

/// This is a re-exportation from the myc core to allow users to import both
/// from myc-api instead of the myc-core.
pub use myc_core::domain::{
    actors::SystemActor,
    dtos::{
        account::Account,
        email::Email,
        guest_role::Permission,
        profile::{LicensedResource, Profile},
        related_accounts::RelatedAccounts,
    },
};