mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
12 lines
193 B
Rust
12 lines
193 B
Rust
#![allow(clippy::redundant_pub_crate)]
|
|
mod adapter;
|
|
mod edges;
|
|
mod entrypoints;
|
|
mod properties;
|
|
mod util;
|
|
mod vertex;
|
|
|
|
pub use adapter::{schema, Adapter, SCHEMA_TEXT};
|
|
|
|
#[cfg(test)]
|
|
mod tests;
|