cbc46ad8eb
- clean up dead code - fix lints - move Session type to legacy module - refactor service names into constants - refactor build_url to be less restrictive for service names - refactor most commands into their own modules
7 lines
128 B
Rust
7 lines
128 B
Rust
use thiserror::Error;
|
|
|
|
#[derive(Debug, Error)]
|
|
pub(crate) enum UserError {
|
|
#[error("User aborted the operation.")]
|
|
Aborted,
|
|
}
|