Initial Commit
This commit is contained in:
11
flight/src/main.rs
Normal file
11
flight/src/main.rs
Normal file
@@ -0,0 +1,11 @@
|
||||
use log::error;
|
||||
use nautilus_flight::run;
|
||||
|
||||
fn main() {
|
||||
match run() {
|
||||
Ok(_) => {}
|
||||
Err(err) => {
|
||||
error!("An unhandled error occurred: {}", err);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user