1 2 3 4 5 6 7 8
use cw_controllers::AdminError; use thiserror::Error; #[derive(Error, Debug, PartialEq)] pub enum AppError { #[error(transparent)] Admin(#[from] AdminError), }