| Crates.io | llm-governance-common |
| lib.rs | llm-governance-common |
| version | 1.0.0 |
| created_at | 2025-11-17 00:46:08.785722+00 |
| updated_at | 2025-11-17 00:46:08.785722+00 |
| description | Common utilities, error handling, and response types for LLM Governance Dashboard |
| homepage | https://github.com/globalbusinessadvisors/llm-governance-dashboard |
| repository | https://github.com/globalbusinessadvisors/llm-governance-dashboard |
| max_upload_size | |
| id | 1936070 |
| size | 86,127 |
Common utilities, error handling, and response types for LLM Governance Dashboard.
Add this to your Cargo.toml:
[dependencies]
llm-governance-common = "1.0.0"
use llm_governance_common::{AppError, Result, ApiResponse};
fn example() -> Result<String> {
Ok("Success".to_string())
}
// Using ApiResponse
let response = ApiResponse::success(data);
Licensed under Apache 2.0.