evenframe 0.1.4

A unified framework for TypeScript type generation and database schema synchronization
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub use evenframe_core::error::{EvenframeError, Result};
pub use evenframe_core::{config, error, registry, traits, types, validator, wrappers};

#[cfg(feature = "schemasync")]
pub use evenframe_core::schemasync;

pub use evenframe_derive::{Evenframe, EvenframeUnion, Schemasync, Typesync};
pub use linkme;

pub mod prelude {
    pub use convert_case::{Case, Casing};
    pub use linkme;
    pub use regex;
}