use Error;
/// Errors that can occur during Graphile Worker operations.
///
/// This enum represents the various errors that can occur when interacting
/// with the job queue database or processing jobs.
/// A Result type alias for GraphileWorkerError.
///
/// This type alias simplifies the return types for functions that can
/// return a GraphileWorkerError.
pub type Result<T> = Result;