1 2 3 4 5 6 7 8
//! Main entry point for the kasl application. //! //! Thin wrapper over [`kasl::run`], which both this binary and the `ka` alias //! share so their behaviour cannot drift apart. fn main() -> anyhow::Result<()> { kasl::run() }