caretta-sync/examples/desktop/src/main.rs

15 lines
238 B
Rust
Raw Normal View History

2025-08-22 07:56:26 +09:00
use caretta::utils::runnable::Runnable;
use caretta_example_core::global::APP_NAME;
2025-08-21 07:40:33 +09:00
use clap::Parser;
2025-08-18 08:22:20 +09:00
use crate::cli::Cli;
2025-07-02 08:32:15 +09:00
mod cli;
mod ipc;
2025-08-18 08:22:20 +09:00
#[tokio::main]
async fn main() {
let args = Cli::parse();
2025-08-22 07:56:26 +09:00
args.run(APP_NAME).await;
2025-06-13 22:32:16 +09:00
}