14 lines
438 B
Rust
14 lines
438 B
Rust
//! Built-in internal feature modules.
|
|
//!
|
|
//! These modules are compiled into the Pod host and contribute through the
|
|
//! same descriptor-approved registry path used by feature modules. They are not
|
|
//! an external plugin-loading surface.
|
|
|
|
pub mod task;
|
|
pub mod ticket;
|
|
|
|
pub use task::{TaskFeature, task_tools_feature};
|
|
pub use ticket::{
|
|
TicketFeature, TicketFeatureAccess, ticket_tools_feature, ticket_tools_feature_with_access,
|
|
};
|