forked from extern/nushell
34 lines
780 B
Rust
34 lines
780 B
Rust
mod collect;
|
|
mod command;
|
|
mod describe;
|
|
mod from;
|
|
mod open;
|
|
mod query;
|
|
mod schema;
|
|
mod select;
|
|
mod utils;
|
|
|
|
use collect::CollectDb;
|
|
use command::Database;
|
|
use describe::DescribeDb;
|
|
use from::FromDb;
|
|
use nu_protocol::engine::StateWorkingSet;
|
|
use open::OpenDb;
|
|
use query::QueryDb;
|
|
use schema::SchemaDb;
|
|
use select::SelectDb;
|
|
|
|
pub fn add_database_decls(working_set: &mut StateWorkingSet) {
|
|
macro_rules! bind_command {
|
|
( $command:expr ) => {
|
|
working_set.add_decl(Box::new($command));
|
|
};
|
|
( $( $command:expr ),* ) => {
|
|
$( working_set.add_decl(Box::new($command)); )*
|
|
};
|
|
}
|
|
|
|
// Series commands
|
|
bind_command!(CollectDb, Database, DescribeDb, FromDb, QueryDb, SelectDb, OpenDb, SchemaDb);
|
|
}
|