todoke 2.2.2

A rule-driven file and URL dispatcher: hands incoming paths (or URLs) to the right handler based on TOML-defined rules.
1
2
3
4
5
6
7
8
//! Backends for the `kind` field on a `[todoke.<name>]` target.
//!
//! Each backend exposes its own `dispatch` method because their natural call
//! shapes differ (neovim is async due to RPC, exec is sync). A unifying
//! trait was tried during scaffold but didn't carry its weight.

pub mod exec;
pub mod neovim;