galvyn 0.7.0

Core-component for the galvyn web-framework
pub mod contrib;

/// Re-export of [`rorm`](::rorm)
#[cfg(feature = "rorm")]
pub mod rorm {
    pub use galvyn_core::re_exports::rorm::*;
    /// Re-export from [`rorm`](galvyn_core::re_exports::rorm::DbEnum)
    pub use galvyn_macros::DbEnum;
    /// Re-export from [`rorm`](galvyn_core::re_exports::rorm::Model)
    pub use galvyn_macros::Model;
    /// Re-export from [`rorm`](galvyn_core::re_exports::rorm::Patch)
    pub use galvyn_macros::Patch;
}

pub mod core {
    pub use galvyn_core::*;
}

pub use crate::galvyn::*;

pub mod error;
mod galvyn;
#[cfg(feature = "graceful-shutdown")]
mod graceful_shutdown;
mod macro_docs;
#[cfg(feature = "openapi")]
pub mod openapi;
pub mod panic_hook;
pub mod tracing;

pub use macro_docs::*;