prax-schema 0.6.5

Schema parser and AST for the Prax ORM
Documentation
//! Abstract Syntax Tree (AST) types for Prax schemas.
//!
//! This module contains all the types that represent a parsed Prax schema.

mod attribute;
mod datasource;
mod field;
mod generator;
mod graphql;
mod model;
mod policy;
mod relation;
mod schema;
mod server_group;
mod types;
mod validation;

pub use attribute::*;
pub use datasource::*;
pub use field::*;
pub use generator::*;
pub use graphql::*;
pub use model::*;
pub use policy::*;
pub use relation::*;
pub use schema::*;
pub use server_group::*;
pub use types::*;
pub use validation::*;