- 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
275 B
Rust
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(),
|
|
}
|
|
}
|
|
}
|