Add export command

This commit is contained in:
Jon Staab
2026-02-06 09:43:29 -08:00
parent 55fcb5e52b
commit 8213ca6d34
3 changed files with 67 additions and 1 deletions
+4 -1
View File
@@ -7,7 +7,10 @@ build-relay:
build-import:
CGO_ENABLED=1 go build -o bin/import cmd/import/main.go
build: build-relay build-import
build-export:
CGO_ENABLED=1 go build -o bin/export cmd/export/main.go
build: build-relay build-import build-export
test:
go test -v ./...