feat: scaffold dirs with a noop miro init command

This commit is contained in:
2026-03-16 20:58:09 +00:00
parent df77cbb9a1
commit 63fddb28fa
8 changed files with 106 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
.PHONY: build test
BIN := build/miro
build:
mkdir -p build
go build -o $(BIN) ./cmd/miro
test:
go test ./...