1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
//! Jira REST API integration
//!
//! This module provides a production-ready Jira client with:
//! - OAuth 2.0 and Basic authentication
//! - Full CRUD operations for issues
//! - JQL query support
//! - Project and board management
//! - Webhook event handling
//! - Comprehensive error handling and retry logic
//! - Rate limiting
//!
//! # Examples
//!
//! ```no_run
//! use integrations::jira::{JiraClient, JiraConfig, JiraAuth};
//!
//! #[tokio::main]
//! async fn main() -> anyhow::Result<()> {
//! let config = JiraConfig {
//! base_url: "https://your-domain.atlassian.net".to_string(),
//! auth: JiraAuth::Basic {
//! email: "your-email@example.com".to_string(),
//! api_token: "your-api-token".to_string(),
//! },
//! timeout_secs: 30,
//! max_retries: 3,
//! rate_limit_per_minute: 100,
//! };
//!
//! let client = JiraClient::new(config).await?;
//! let projects = client.get_projects().await?;
//!
//! for project in projects {
//! println!("{}: {}", project.key, project.name);
//! }
//!
//! Ok(())
//! }
//! ```
pub use AuthManager;
pub use JiraClient;
pub use *;
pub use ;