//! Schema macro for defining database entities with Prisma-like syntax.
//!
//! This module provides the `schema!` macro that generates SeaORM entity definitions
//! from a concise, declarative syntax where types indicate relationships.
use TokenStream;
pub use analyze_schema;
pub use generate_schema;
pub use parse_schema;
/// Entry point for the schema macro implementation.