kopi 0.0.2

Kopi is a JDK version management tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod client;
pub mod query;

#[cfg(test)]
mod tests;

use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ApiErrorResponse {
    pub result: Vec<serde_json::Value>,
    pub message: String,
}

// Re-export API client types
pub use client::ApiClient;
pub use query::PackageQuery;