10 lines
186 B
Rust
10 lines
186 B
Rust
// path_from_the_root: src/component/mod.rs
|
|
|
|
pub mod action;
|
|
pub mod error;
|
|
pub mod r#trait;
|
|
|
|
pub use action::ComponentAction;
|
|
pub use error::ComponentError;
|
|
pub use r#trait::Component;
|