cl-cli/src/gitlab/mod.rs
Julien Fastré 9ef98e5044
Refactor the issue2work action
- separation the logic to handle issues from gitlab into the gitlab mod
- create a kind of visitor pattern to check between the different providers
2024-10-24 23:14:14 +02:00

15 lines
275 B
Rust

pub mod action;
pub mod client;
pub mod issue;
use crate::error::GeneralError;
use gitlab::GitlabError;
impl From<GitlabError> for GeneralError {
fn from(value: GitlabError) -> Self {
GeneralError {
description: value.to_string(),
}
}
}