1 2 3 4 5 6 7 8 9 10
//! Command-line interface for the `skrills` CLI. //! //! This is the main entry point for the `skrills` executable, //! delegating to the `skrills-server` crate. #![deny(unsafe_code)] fn main() -> anyhow::Result<()> { skrills_server::run() }