Skip to main content

fastskill_core/http/
mod.rs

1//! HTTP server implementation for FastSkill
2//!
3//! This module provides a REST API server using Axum with full CRUD operations
4//! for skills management.
5
6pub mod errors;
7pub mod handlers;
8pub mod models;
9pub mod server;
10
11pub use models::{ApiResponse, ErrorResponse};
12/// Re-export commonly used types
13pub use server::FastSkillServer;