graphql_starter/error/
mod.rs

1
2
3
4
5
6
7
8
9
//! Generic error types ready for web servers

crate::using! {
    pub core,
    pub api,
}

#[cfg(feature = "graphql")]
crate::using!(pub graphql);