Expose mentat_core::{TypedValue,ValueType} and conn::{Conn,Metadata}. (#443)

This commit is contained in:
Richard Newman 2017-05-03 15:49:29 -07:00
parent 523d5ea5f1
commit 059b9d1182

View file

@ -40,6 +40,11 @@ pub fn get_connection() -> Connection {
return Connection::open_in_memory().unwrap();
}
pub use mentat_core::{
TypedValue,
ValueType,
};
pub use mentat_db::{
new_connection,
};
@ -53,6 +58,11 @@ pub use query::{
q_once,
};
pub use conn::{
Conn,
Metadata,
};
#[cfg(test)]
mod tests {
use edn::symbols::Keyword;