1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use std::ops::Range;

use crate::parser::Rule;
use pest::iterators::Pair;
use pest::Span;

type SpanRange = Range<usize>;

pub mod enums;
pub mod indexes;
pub mod project;
pub mod refs;
pub mod schema;
pub mod table;
pub mod table_group;