bestool_psql/
lib.rs

1#![deny(rust_2018_idioms)]
2
3mod audit;
4mod completer;
5mod config;
6mod error;
7mod input;
8mod ots;
9mod parser;
10mod pool;
11mod query;
12mod repl;
13mod schema_cache;
14mod signals;
15mod snippets;
16mod table;
17mod theme;
18mod tls;
19
20pub use config::Config;
21pub use pool::{PgConnection, PgPool, create_pool};
22pub use repl::run;
23pub use signals::register_sigint_handler;
24pub use theme::Theme;