Skip to main content

opql/error/
mod.rs

1use super::*;
2
3mod internal;
4mod kind;
5mod pql_error;
6mod runtime;
7mod vm;
8
9pub use internal::*;
10pub use kind::*;
11pub use pql_error::*;
12pub use runtime::*;
13pub use vm::*;
14
15pub type PQLResult<T> = Result<T, PQLError>;