13 lines
243 B
Rust
13 lines
243 B
Rust
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(),
|
|
}
|
|
}
|
|
}
|