- separation the logic to handle issues from gitlab into the gitlab mod - create a kind of visitor pattern to check between the different providers
15 lines
431 B
Rust
15 lines
431 B
Rust
use crate::cli::Issue2Work;
|
|
use crate::config::Config;
|
|
use crate::error::GeneralError;
|
|
use crate::gitlab::client::ClientProvider;
|
|
use gitlab::{AsyncGitlab, GitlabBuilder};
|
|
use url::Url;
|
|
|
|
pub(crate) mod issue2work;
|
|
|
|
pub trait Issue2WorkActionTrait {
|
|
async fn run(&self, url: &Url, config: &Config, args: &Issue2Work) -> Result<(), GeneralError>;
|
|
|
|
fn supports(&self, url: &Url, config: &Config, args: &Issue2Work) -> bool;
|
|
}
|