kasl-cli 1.0.2

Work activity tracker CLI: automatic workday and break detection, task management with Jira/GitLab integration, productivity reports and exports
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()
}