Skip to content

vow-mq

vow-mq builds consistent topic and queue name strings — no broker I/O in v0.1. Install with vpm:

Terminal window
curl -fsSL https://install.vowlang.dev | sh
export PATH="$HOME/.local/bin:$PATH"
vpm add vow-mq
vpm install
import vmq from vow_mq
fn main(caps: Caps) -> int {
print vmq.topic("orders", "created");
return 0;
}
Terminal window
cd vow-libs/vow-mq && vow test tests/mq.vow