gitdataai/libs/api/lib.rs
ZhenYi 4e2a39a5c0 fix(workspace): resolve all cargo check warnings across workspace
Remove unused imports and add #[allow(dead_code)] annotations to
intentionally retained fields/methods. Also add deploy/.server.yaml
to .gitignore to prevent accidental credential exposure.
2026-05-10 21:56:08 +08:00

24 lines
432 B
Rust

pub mod agent;
pub mod auth;
pub mod chat;
pub mod dist;
pub mod error;
pub mod git;
pub mod issue;
pub mod openapi;
pub mod project;
pub mod pull_request;
pub mod robots;
pub mod room;
pub mod route;
pub mod search;
pub mod sidemap;
pub mod skill;
pub mod user;
// Auto-generated frontend module (from build.rs) serving embedded dist/ assets
#[allow(dead_code)]
mod frontend;
pub use error::{api_success, ApiError, ApiResponse};