stub youtrack module

This commit is contained in:
2025-09-22 15:37:50 +02:00
committed by MightyPork
parent 340b520e58
commit c7e9df60c9
4 changed files with 1318 additions and 59 deletions
Generated
+1299 -59
View File
File diff suppressed because it is too large Load Diff
+5
View File
@@ -18,3 +18,8 @@ faccess = "0.2"
chrono = "0.4"
indexmap = { version = "2.11", features = ["serde"] }
inquire = { version = "0.8.0", features = ["editor"] }
reqwest = { version = "0.12", features = ["rustls-tls", "blocking"], optional = true }
[features]
youtrack = ["reqwest"]
+3
View File
@@ -24,6 +24,9 @@ mod store;
mod utils;
#[cfg(feature = "youtrack")]
mod youtrack;
#[derive(Debug)]
pub struct AppContext {
/// Name of the cl binary
+11
View File
@@ -0,0 +1,11 @@
//! Youtrack integration (mark issues as Released when packing to changelog)
#[cfg(test)]
mod tests {
#[test]
fn test_youtrack_communication() {
let token = "";
}
}