From 567e5b51d32450999935bcf3af143248888e12e9 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Mon, 26 Jan 2026 05:13:25 +0000 Subject: feat: Initial commit --- justfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 justfile (limited to 'justfile') diff --git a/justfile b/justfile new file mode 100644 index 0000000..b1530db --- /dev/null +++ b/justfile @@ -0,0 +1,14 @@ +name := "mugi" +format_command := "~/go/bin/gofumpt -l -w ." + +default: + just --list + +fmt: + {{ format_command }} + +run *arguments="": + go run ./cmd/{{ name }} {{ arguments }} + +build: + go build -o {{ name }} ./cmd/{{ name }} -- cgit v1.2.3