mirror of
https://github.com/fluencelabs/llamadb
synced 2025-07-06 09:51:35 +00:00
Initialize env_logger
to CLI
This commit is contained in:
@ -3,6 +3,8 @@
|
||||
#[macro_use]
|
||||
extern crate log;
|
||||
|
||||
extern crate env_logger;
|
||||
|
||||
extern crate linenoise;
|
||||
extern crate llamadb;
|
||||
|
||||
@ -12,6 +14,8 @@ mod prettyselect;
|
||||
use prettyselect::pretty_select;
|
||||
|
||||
fn main() {
|
||||
env_logger::init().unwrap();
|
||||
|
||||
let mut lexer = llamadb::sqlsyntax::lexer::Lexer::new();
|
||||
|
||||
let mut db = llamadb::tempdb::TempDb::new();
|
||||
|
Reference in New Issue
Block a user