skill_web/
lib.rs

1//! Skill Web UI Library
2//!
3//! This library exports the core modules of the Skill Engine web interface
4//! for use in tests and potentially other consumers.
5
6// Re-export all public modules
7pub mod api;
8pub mod store;
9pub mod utils;
10pub mod router;
11pub mod pages;
12pub mod components;
13pub mod hooks;
14pub mod app;
15
16// Re-export common types
17pub use api::client::ApiClient;
18pub use api::types::*;
19pub use api::error::{ApiError, ApiResult};
20pub use store::skills::*;
21pub use store::executions::*;