From cd21a08655f716dccb086b14f44c362728f22f25 Mon Sep 17 00:00:00 2001 From: balki <3070606-balki@users.noreply.gitlab.com> Date: Tue, 21 Jun 2022 22:23:49 -0400 Subject: [PATCH] rename cmd and add Makefile --- Makefile | 12 ++++++++++++ cmd/{gen_schema => schemagen}/main.go | 0 2 files changed, 12 insertions(+) create mode 100644 Makefile rename cmd/{gen_schema => schemagen}/main.go (100%) diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..87b6ec8 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ + +build: + go build . + +buildrpi: + GOOS=linux GOARCH=arm GOARM=7 go build . + +schemagen: + go run cmd/schemagen/main.go + +clean: + rm tss diff --git a/cmd/gen_schema/main.go b/cmd/schemagen/main.go similarity index 100% rename from cmd/gen_schema/main.go rename to cmd/schemagen/main.go