kto 0.1.5

A generic, flexible web change watcher with AI-powered analysis
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Command implementations for kto CLI

mod check;
mod misc;
mod notify;
pub(crate) mod platform_detect;
mod profile;
mod remind;
mod service;
mod watch;

pub use check::*;
pub use misc::*;
pub use notify::*;
pub use profile::*;
pub use remind::*;
pub use service::*;
pub use watch::*;