evenframe_core 0.1.4

Core functionality for Evenframe - TypeScript type generation and database schema synchronization
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Schema import types - re-exports from types.rs for backward compatibility
//!
//! This module re-exports schema definition types from the types module.
//! The SurrealDB-specific SchemaImporter has been moved to surql.rs.

// Re-export all types from types.rs for backward compatibility
pub use super::types::{
    AccessDefinition, FieldDefinition, IndexDefinition, ObjectType, PermissionSet,
    SchemaDefinition, SchemaType, TableDefinition,
};

// Re-export SchemaImporter from surql module
pub use super::surql::SchemaImporter;