1 2 3 4 5 6 7 8 9 10
#![doc = include_str!("../README.md")] #![doc(html_favicon_url = "https://zino.cc/assets/zino-logo.png")] #![doc(html_logo_url = "https://zino.cc/assets/zino-logo.svg")] #![forbid(unsafe_code)] mod cli; pub use cli::{Cli, Subcommands}; mod structs;