nautilus_cli/
lib.rs

1// -------------------------------------------------------------------------------------------------
2//  Copyright (C) 2015-2025 Posei Systems Pty Ltd. All rights reserved.
3//  https://poseitrader.io
4//
5//  Licensed under the GNU Lesser General Public License Version 3.0 (the "License");
6//  You may not use this file except in compliance with the License.
7//  You may obtain a copy of the License at https://www.gnu.org/licenses/lgpl-3.0.en.html
8//
9//  Unless required by applicable law or agreed to in writing, software
10//  distributed under the License is distributed on an "AS IS" BASIS,
11//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12//  See the License for the specific language governing permissions and
13//  limitations under the License.
14// -------------------------------------------------------------------------------------------------
15
16#![warn(rustc::all)]
17#![deny(unsafe_code)]
18#![deny(nonstandard_style)]
19#![deny(missing_debug_implementations)]
20#![deny(clippy::missing_errors_doc)]
21#![deny(clippy::missing_panics_doc)]
22#![deny(rustdoc::broken_intra_doc_links)]
23
24mod database;
25pub mod opt;
26
27use crate::{
28    database::postgres::run_database_command,
29    opt::{Commands, PoseiCli},
30};
31
32/// Runs the Posei CLI based on the provided options.
33///
34/// # Errors
35///
36/// Returns an error if execution of the specified command fails.
37pub async fn run(opt: PoseiCli) -> anyhow::Result<()> {
38    match opt.command {
39        Commands::Database(database_opt) => run_database_command(database_opt).await?,
40    }
41    Ok(())
42}