kasl-cli 1.0.0

kasl is a comprehensive command-line utility 🛠️ designed to streamline the tracking of work activities 📊, including start times ⏰, pauses ⏸, and task completion
Documentation
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()
}