prax-import 0.9.2

Import schemas from Prisma, Diesel, and SeaORM to Prax ORM
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! SeaORM schema import functionality.
//!
//! This module provides utilities to parse SeaORM entity files and convert
//! them to Prax schema format.

mod parser;
pub mod types;

pub use parser::{
    import_seaorm_entity, import_seaorm_entity_file, parse_seaorm_entity, parse_seaorm_entity_file,
};
pub use types::*;