stub youtrack module
This commit is contained in:
Generated
+1299
-59
File diff suppressed because it is too large
Load Diff
@@ -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"]
|
||||
|
||||
@@ -24,6 +24,9 @@ mod store;
|
||||
|
||||
mod utils;
|
||||
|
||||
#[cfg(feature = "youtrack")]
|
||||
mod youtrack;
|
||||
|
||||
#[derive(Debug)]
|
||||
pub struct AppContext {
|
||||
/// Name of the cl binary
|
||||
|
||||
@@ -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 = "";
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user