caretta-sync/lazy-supplements/src/cli/mod.rs

11 lines
145 B
Rust
Raw Normal View History

2025-05-24 06:11:00 +09:00
use std::path::PathBuf;
mod connect;
mod init;
mod server;
2025-05-27 17:49:52 +09:00
pub use server::ServerArgs;
2025-05-24 06:11:00 +09:00
pub fn default_config_path() -> PathBuf {
todo!()
}