hooklistener-cli 0.1.1

A fast, terminal-based CLI for browsing webhooks, forwarding events, and exposing local servers
.PHONY: all check run build fmt clean

all: check build

check:
	cargo test --all-targets --all-features --locked
	cargo fmt --all -- --check
	cargo clippy --all-targets --all-features -- -D warnings

run:
	cargo run

build:
	cargo build

fmt:
	cargo fmt --all

clean:
	cargo clean