Initial Commit

This commit is contained in:
2025-03-30 10:58:46 -07:00
commit e59b3f3a5f
16 changed files with 547 additions and 0 deletions

11
flight/src/main.rs Normal file
View 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);
}
}
}