2026-01-22 13:57:40 -03:00
|
|
|
// Core (Always available)
|
|
|
|
|
mod core;
|
|
|
|
|
pub use self::core::*;
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "tasks")]
|
|
|
|
|
mod tasks;
|
|
|
|
|
#[cfg(feature = "tasks")]
|
|
|
|
|
pub use self::tasks::*;
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "mail")]
|
|
|
|
|
mod mail;
|
|
|
|
|
#[cfg(feature = "mail")]
|
|
|
|
|
pub use self::mail::*;
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "people")]
|
|
|
|
|
mod people;
|
|
|
|
|
#[cfg(feature = "people")]
|
|
|
|
|
pub use self::people::*;
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "tickets")]
|
|
|
|
|
mod tickets;
|
|
|
|
|
#[cfg(feature = "tickets")]
|
|
|
|
|
pub use self::tickets::*;
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "billing")]
|
|
|
|
|
mod billing;
|
|
|
|
|
#[cfg(feature = "billing")]
|
|
|
|
|
pub use self::billing::*;
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "attendant")]
|
|
|
|
|
mod attendant;
|
|
|
|
|
#[cfg(feature = "attendant")]
|
|
|
|
|
pub use self::attendant::*;
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "calendar")]
|
|
|
|
|
mod calendar;
|
|
|
|
|
#[cfg(feature = "calendar")]
|
|
|
|
|
pub use self::calendar::*;
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "goals")]
|
|
|
|
|
mod goals;
|
|
|
|
|
#[cfg(feature = "goals")]
|
|
|
|
|
pub use self::goals::*;
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "canvas")]
|
|
|
|
|
mod canvas;
|
|
|
|
|
#[cfg(feature = "canvas")]
|
|
|
|
|
pub use self::canvas::*;
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "workspaces")]
|
|
|
|
|
mod workspaces;
|
|
|
|
|
#[cfg(feature = "workspaces")]
|
|
|
|
|
pub use self::workspaces::*;
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "social")]
|
|
|
|
|
mod social;
|
|
|
|
|
#[cfg(feature = "social")]
|
|
|
|
|
pub use self::social::*;
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "analytics")]
|
|
|
|
|
mod analytics;
|
|
|
|
|
#[cfg(feature = "analytics")]
|
|
|
|
|
pub use self::analytics::*;
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "compliance")]
|
|
|
|
|
mod compliance;
|
|
|
|
|
#[cfg(feature = "compliance")]
|
|
|
|
|
pub use self::compliance::*;
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "meet")]
|
|
|
|
|
mod meet;
|
|
|
|
|
#[cfg(feature = "meet")]
|
|
|
|
|
pub use self::meet::*;
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "research")]
|
|
|
|
|
mod research;
|
|
|
|
|
#[cfg(feature = "research")]
|
|
|
|
|
pub use self::research::*;
|
2026-01-22 14:01:50 -03:00
|
|
|
|
|
|
|
|
#[cfg(feature = "learn")]
|
|
|
|
|
mod learn;
|
|
|
|
|
#[cfg(feature = "learn")]
|
|
|
|
|
pub use self::learn::*;
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "project")]
|
|
|
|
|
mod project;
|
|
|
|
|
#[cfg(feature = "project")]
|
|
|
|
|
pub use self::project::*;
|