//! Shared Axum state for blog routes (DB connection).
usesea_orm::DatabaseConnection;/// Shared Axum state for the blog plugin routes.
#[derive(Clone)]pubstructBlogState{pubdb: DatabaseConnection,
}implBlogState{pubfnnew(db: DatabaseConnection)->Self{Self{ db }}}