1 2 3 4 5 6 7 8
use resticular::cli::Cli; use resticular::error::Error; fn main() -> Result<(), Error> { Cli.start()?; Ok(()) }